repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
opengeospatial/ogc-feat-geo-json | 8d71518a41907f0750e5d99f53d65448531322ec | 2022-01-07T15:50:40 | core/schemas/featurecollection.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "http://beta.schemas.opengis.net/json-fg/featurecollection.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"properties": {
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"featureType": {
"$ref": "featuretype.json"
},
"features": {
"items": {
"$ref": "feature.json"
},
"type": "array"
},
"geometryDimension": {
"maximum": 3,
"minimum": 0,
"type": "integer"
},
"links": {
"items": {
"$ref": "link.json"
},
"type": "array"
},
"type": {
"enum": [
"FeatureCollection"
],
"type": "string"
}
},
"required": [
"type",
"features"
],
"title": "a JSON-FG Feature Collection",
"type": "object"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | fdc8a0857d3367e10142becedc1c1cbd9fa51e38 | 2022-11-14T14:53:13 | core/schemas/geometry-objects.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$defs": {
"CustomGeometry": {
"properties": {
"type": {
"not": {
"enum": [
"Point",
"MultiPoint",
"LineString",
"MultiLineString",
"Polygon",
"MultiPolygon",
"Polyhedron",
"MultiPolyhedron",
"Prism",
"MultiPrism",
"GeometryCollection"
]
},
"type": "string"
}
},
"required": [
"type"
],
"title": "A custom geometry object",
"type": "object"
},
"GeometryCollection": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"geometries": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"type": "array"
},
"type": {
"enum": [
"GeometryCollection"
],
"type": "string"
}
},
"required": [
"type",
"geometries"
],
"title": "GeoJSON GeometryCollection with additional 'coordRefSys' member",
"type": "object"
},
"LineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": {
"enum": [
"LineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON LineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiLineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiLineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiLineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiPoint": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"type": "array"
},
"type": {
"enum": [
"MultiPoint"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPoint with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPolygon with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG MultiPolyhedron",
"type": "object"
},
"MultiPrism": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"prisms": {
"items": {
"$ref": "#/$defs/Prism"
},
"type": "array"
},
"type": {
"enum": [
"MultiPrism"
],
"type": "string"
}
},
"required": [
"type",
"prisms"
],
"title": "JSON-FG Multi-Prism",
"type": "object"
},
"Point": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"$ref": "#/$defs/position"
},
"type": {
"enum": [
"Point"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Point with additional 'coordRefSys' member",
"type": "object"
},
"Polygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"Polygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Polygon with additional 'coordRefSys' member",
"type": "object"
},
"Polyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": {
"enum": [
"Polyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG Polyhedron",
"type": "object"
},
"Prism": {
"properties": {
"base": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"lower": {
"type": "number"
},
"type": {
"enum": [
"Prism"
],
"type": "string"
},
"upper": {
"type": "number"
}
},
"required": [
"type",
"base",
"upper"
],
"title": "JSON-FG Prism",
"type": "object"
},
"bbox": {
"oneOf": [
{
"$ref": "#/$defs/bbox2d"
},
{
"$ref": "#/$defs/bbox3d"
}
]
},
"bbox2d": {
"items": {
"type": "number"
},
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"bbox3d": {
"items": {
"type": "number"
},
"maxItems": 6,
"minItems": 6,
"type": "array"
},
"position": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 2,
"type": "array"
},
"position3d": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
}
},
"$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"title": "Geometry objects"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | e3d58196722eb4b9a98df9723fd2d51ab5ab54fa | 2023-09-04T15:33:24 | core/schemas/conformsto.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/conformsto.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT",
"items": {
"type": "string"
},
"minItems": 1,
"title": "the conformsTo member",
"type": "array"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | a40615f56dd80213d06012bdb3c5ed083c4ca407 | 2023-03-06T14:33:26 | core/schemas/time.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$defs": {
"date": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"interval": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/date"
},
{
"$ref": "#/$defs/timestamp"
},
{
"enum": [
".."
],
"type": "string"
}
]
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"timestamp": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?Z$",
"type": "string"
}
},
"$id": "https://beta.schemas.opengis.net/json-fg/time.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"description": "This JSON Schema is part of JSON-FG version 0.1.1",
"oneOf": [
{
"type": "null"
},
{
"properties": {
"date": {
"$ref": "#/$defs/date"
},
"interval": {
"$ref": "#/$defs/interval"
},
"timestamp": {
"$ref": "#/$defs/timestamp"
}
},
"type": "object"
}
],
"title": "the time member"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 8d71518a41907f0750e5d99f53d65448531322ec | 2022-01-07T15:50:40 | core/schemas/feature.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "http://beta.schemas.opengis.net/json-fg/feature.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"properties": {
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"featureType": {
"$ref": "featuretype.json"
},
"geometry": {
"$ref": "geometry.json"
},
"id": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"links": {
"items": {
"$ref": "link.json"
},
"type": "array"
},
"properties": {
"oneOf": [
{
"type": "null"
},
{
"type": "object"
}
]
},
"type": {
"enum": [
"Feature"
],
"type": "string"
},
"when": {
"$ref": "when.json"
},
"where": {
"$ref": "where.json"
}
},
"required": [
"type",
"when",
"where",
"geometry",
"properties"
],
"title": "a JSON-FG Feature",
"type": "object"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 0778da9c279fe878cce8ba2032a9189bb9616383 | 2023-11-13T16:27:40 | core/schemas/geometry-objects.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$defs": {
"CustomGeometry": {
"properties": {
"type": {
"not": {
"enum": [
"Point",
"MultiPoint",
"LineString",
"MultiLineString",
"Polygon",
"MultiPolygon",
"Polyhedron",
"MultiPolyhedron",
"Prism",
"MultiPrism",
"GeometryCollection"
]
},
"type": "string"
}
},
"required": [
"type"
],
"title": "A custom geometry object",
"type": "object"
},
"GeometryCollection": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"geometries": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"type": "array"
},
"type": {
"enum": [
"GeometryCollection"
],
"type": "string"
}
},
"required": [
"type",
"geometries"
],
"title": "GeoJSON GeometryCollection with additional 'coordRefSys' member",
"type": "object"
},
"LineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": {
"enum": [
"LineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON LineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiLineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiLineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiLineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiPoint": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"type": "array"
},
"type": {
"enum": [
"MultiPoint"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPoint with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPolygon with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG MultiPolyhedron",
"type": "object"
},
"MultiPrism": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"prisms": {
"items": {
"$ref": "#/$defs/Prism"
},
"type": "array"
},
"type": {
"enum": [
"MultiPrism"
],
"type": "string"
}
},
"required": [
"type",
"prisms"
],
"title": "JSON-FG Multi-Prism",
"type": "object"
},
"Point": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"$ref": "#/$defs/position"
},
"type": {
"enum": [
"Point"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Point with additional 'coordRefSys' member",
"type": "object"
},
"Polygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"Polygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Polygon with additional 'coordRefSys' member",
"type": "object"
},
"Polyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": {
"enum": [
"Polyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG Polyhedron",
"type": "object"
},
"Prism": {
"properties": {
"base": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"lower": {
"type": "number"
},
"type": {
"enum": [
"Prism"
],
"type": "string"
},
"upper": {
"type": "number"
}
},
"required": [
"type",
"base",
"upper"
],
"title": "JSON-FG Prism",
"type": "object"
},
"bbox": {
"oneOf": [
{
"$ref": "#/$defs/bbox2d"
},
{
"$ref": "#/$defs/bbox3d"
}
]
},
"bbox2d": {
"items": {
"type": "number"
},
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"bbox3d": {
"items": {
"type": "number"
},
"maxItems": 6,
"minItems": 6,
"type": "array"
},
"position": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 2,
"type": "array"
},
"position3d": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
}
},
"$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.2",
"title": "the geometry objects"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 39e8e952ed29feef64d30317905d7b8ab870abb3 | 2023-10-03T05:37:06 | core/schemas/feature.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/feature.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.0",
"properties": {
"conformsTo": {
"$ref": "conformsto.json"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"featureSchema": {
"$ref": "featureschema.json"
},
"featureType": {
"$ref": "featuretype.json"
},
"geometry": {
"$ref": "geometry.json"
},
"id": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"place": {
"$ref": "place.json"
},
"properties": {
"oneOf": [
{
"type": "null"
},
{
"type": "object"
}
]
},
"time": {
"$ref": "time.json"
},
"type": {
"enum": [
"Feature"
],
"type": "string"
}
},
"required": [
"type",
"time",
"place",
"geometry",
"properties"
],
"title": "a JSON-FG Feature",
"type": "object"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | c38742ca647902ab87a7af0879720b1ce1b1f2dc | 2022-09-08T10:26:51 | core/schemas/link.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/link.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"properties": {
"anchor": {
"type": "string"
},
"href": {
"format": "uri-reference",
"type": "string"
},
"hreflang": {
"type": "string"
},
"length": {
"type": "string"
},
"rel": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"href",
"rel"
],
"title": "Link",
"type": "object"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 06868ddc3417b26ca5256ef187b96685e63eb968 | 2023-05-23T00:51:41 | proposals/circulargeom-schema.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$defs": {
"Arc": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"$ref": "geometry-objects.json#/$defs/position"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"type": {
"enum": [
"Arc"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG Arc",
"type": "object"
},
"Circle": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"$ref": "geometry-objects.json#/$defs/position"
},
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"type": {
"enum": [
"Circle"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG Circle",
"type": "object"
},
"CompoundCurve": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/Arc"
},
{
"$ref": "#/$defs/Circle"
},
{
"$ref": "geometry-objects.json#/$defs/LineString"
}
]
},
"minItems": 1,
"type": "array"
},
"type": {
"enum": [
"CompoundCurve"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG CompoundCurve",
"type": "object"
},
"CurveGeometryCollection": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"geometries": {
"items": {
"oneOf": [
{
"$ref": "geometry-objects.json#/$defs/Point"
},
{
"$ref": "geometry-objects.json#/$defs/MultiPoint"
},
{
"$ref": "geometry-objects.json#/$defs/LineString"
},
{
"$ref": "geometry-objects.json#/$defs/MultiLineString"
},
{
"$ref": "geometry-objects.json#/$defs/Polygon"
},
{
"$ref": "geometry-objects.json#/$defs/MultiPolygon"
},
{
"$ref": "#/$defs/Arc"
},
{
"$ref": "#/$defs/Circle"
},
{
"$ref": "#/$defs/CompoundCurve"
},
{
"$ref": "#/$defs/MultiCompoundCurve"
},
{
"$ref": "#/$defs/CurvePolygon"
},
{
"$ref": "#/$defs/MultiCurvePolygon"
}
]
},
"type": "array"
},
"type": {
"enum": [
"CurveGeometryCollection"
],
"type": "string"
}
},
"required": [
"type",
"geometries"
],
"title": "JSON-FG CurveGeometryCollection",
"type": "object"
},
"CurvePolygon": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"$ref": "#/$defs/CompoundCurve"
},
"minItems": 1,
"type": "array"
},
"type": {
"enum": [
"CurvePolygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG CurvePolygon",
"type": "object"
},
"MultiCompoundCurve": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"$ref": "#/$defs/CompoundCurve"
},
"type": "array"
},
"type": {
"enum": [
"MultiCompoundCurve"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG MultiCompoundCurve",
"type": "object"
},
"MultiCurvePolygon": {
"properties": {
"bbox": {
"$ref": "geometry-objects.json#/$defs/bbox"
},
"coordinates": {
"items": {
"$ref": "#/$defs/CurvePolygon"
},
"type": "array"
},
"type": {
"enum": [
"MultiCurvePolygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG MultiCurvePolygon",
"type": "object"
}
},
"$id": "http://beta.schemas.opengis.net/json-fg/circular-geometry-objects.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"title": "Circular geometry objects"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb | 2022-05-16T12:38:17 | core/schemas/link.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/link.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"properties": {
"anchor": {
"type": "string"
},
"href": {
"format": "uri-reference",
"type": "string"
},
"hreflang": {
"type": "string"
},
"length": {
"type": "string"
},
"rel": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"href",
"rel"
],
"title": "JSON-FG Feature Collection",
"type": "object"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | f80746d2251137168b6a08bb7f174ee61a780a96 | 2023-11-13T13:47:58 | core/schemas/conformsto.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/conformsto.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.2",
"items": {
"type": "string"
},
"minItems": 1,
"title": "the conformsTo member",
"type": "array"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 2b60f16d823a5404387e92fbdb81afa43d638464 | 2023-11-13T14:11:10 | core/schemas/geometry-objects.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$defs": {
"CustomGeometry": {
"properties": {
"type": {
"not": {
"enum": [
"Point",
"MultiPoint",
"LineString",
"MultiLineString",
"Polygon",
"MultiPolygon",
"Polyhedron",
"MultiPolyhedron",
"Prism",
"MultiPrism",
"GeometryCollection"
]
},
"type": "string"
}
},
"required": [
"type"
],
"title": "A custom geometry object",
"type": "object"
},
"GeometryCollection": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"geometries": {
"items": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"type": "array"
},
"type": {
"enum": [
"GeometryCollection"
],
"type": "string"
}
},
"required": [
"type",
"geometries"
],
"title": "GeoJSON GeometryCollection with additional 'coordRefSys' member",
"type": "object"
},
"LineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": {
"enum": [
"LineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON LineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiLineString": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 2,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiLineString"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiLineString with additional 'coordRefSys' member",
"type": "object"
},
"MultiPoint": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"$ref": "#/$defs/position"
},
"type": "array"
},
"type": {
"enum": [
"MultiPoint"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPoint with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON MultiPolygon with additional 'coordRefSys' member",
"type": "object"
},
"MultiPolyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"MultiPolyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG MultiPolyhedron",
"type": "object"
},
"MultiPrism": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"prisms": {
"items": {
"$ref": "#/$defs/Prism"
},
"type": "array"
},
"type": {
"enum": [
"MultiPrism"
],
"type": "string"
}
},
"required": [
"type",
"prisms"
],
"title": "JSON-FG Multi-Prism",
"type": "object"
},
"Point": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"$ref": "#/$defs/position"
},
"type": {
"enum": [
"Point"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Point with additional 'coordRefSys' member",
"type": "object"
},
"Polygon": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"$ref": "#/$defs/position"
},
"minItems": 4,
"type": "array"
},
"type": "array"
},
"type": {
"enum": [
"Polygon"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "GeoJSON Polygon with additional 'coordRefSys' member",
"type": "object"
},
"Polyhedron": {
"properties": {
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"coordinates": {
"items": {
"items": {
"items": {
"items": {
"$ref": "#/$defs/position3d"
},
"minItems": 4,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"minItems": 1,
"type": "array"
},
"type": {
"enum": [
"Polyhedron"
],
"type": "string"
}
},
"required": [
"type",
"coordinates"
],
"title": "JSON-FG Polyhedron",
"type": "object"
},
"Prism": {
"properties": {
"base": {
"oneOf": [
{
"$ref": "#/$defs/Point"
},
{
"$ref": "#/$defs/LineString"
},
{
"$ref": "#/$defs/Polygon"
},
{
"$ref": "#/$defs/MultiPoint"
},
{
"$ref": "#/$defs/MultiLineString"
},
{
"$ref": "#/$defs/MultiPolygon"
}
]
},
"bbox": {
"$ref": "#/$defs/bbox3d"
},
"coordRefSys": {
"$ref": "coordrefsys.json"
},
"lower": {
"type": "number"
},
"type": {
"enum": [
"Prism"
],
"type": "string"
},
"upper": {
"type": "number"
}
},
"required": [
"type",
"base",
"upper"
],
"title": "JSON-FG Prism",
"type": "object"
},
"bbox": {
"oneOf": [
{
"$ref": "#/$defs/bbox2d"
},
{
"$ref": "#/$defs/bbox3d"
}
]
},
"bbox2d": {
"items": {
"type": "number"
},
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"bbox3d": {
"items": {
"type": "number"
},
"maxItems": 6,
"minItems": 6,
"type": "array"
},
"position": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 2,
"type": "array"
},
"position3d": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
}
},
"$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.0",
"title": "the geometry objects"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | e3d58196722eb4b9a98df9723fd2d51ab5ab54fa | 2023-09-04T15:33:24 | core/schemas/featureschema.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/featureschema.json",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"additionalProperties": {
"format": "uri",
"type": "string"
},
"type": "object"
}
],
"title": "the featureSchema member"
} | Apache-2.0 | en |
opengeospatial/ogc-feat-geo-json | 65363f1fe84f8ea9518ca189859ec7bec3a7be99 | 2024-02-26T14:02:01 | core/schemas/link.json | 25 | 2024-05-28T03:15:28.68877Z | {
"$id": "https://beta.schemas.opengis.net/json-fg/link.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Since JSON-FG 0.2 this schema is no longer part of JSON-FG. The file is still published for now as an informative schema in case any other schema includes a reference. All references to this schema should be changed.",
"properties": {
"anchor": {
"type": "string"
},
"href": {
"format": "uri-reference",
"type": "string"
},
"hreflang": {
"type": "string"
},
"length": {
"type": "string"
},
"rel": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"href",
"rel"
],
"title": "a Link object",
"type": "object"
} | Apache-2.0 | en |
KAL-ATM-Software/KAL_XFS4IoT_SP-Dev-Samples | 4225a3fa13f830dec5c40a025f0f03f1fd3cc5f4 | 2023-08-31T16:29:08 | Devices/ServerHostSample/JsonSchema/JsonSchema-2021-1.json | 7 | 2024-05-28T03:29:42.08448Z | {
"$defs": {
"messages": {
"$id": "/messages",
"Auxiliaries.AuxiliaryStatusEvent": {
"1.0": {
"properties": {
"ambientLightSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.AmbientLightSensorState"
},
"audibleAlarmState": {
"$ref": "/schemas#/2021-01/Auxiliaries.AudibleAlarmState"
},
"audioState": {
"$ref": "/schemas#/2021-01/Auxiliaries.AudioState"
},
"bootSwitchSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.BootSwitchSensorState"
},
"cabinetFrontDoorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.CabinetFrontDoorState"
},
"cabinetLeftDoorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.CabinetLeftDoorState"
},
"cabinetRearDoorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.CabinetRearDoorState"
},
"cabinetRightDoorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.CabinetRightDoorState"
},
"consumerDisplayBacklightState": {
"$ref": "/schemas#/2021-01/Auxiliaries.ConsumerDisplayBacklightState"
},
"displaySensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.DisplaySensorState"
},
"enhancedAudioControlState": {
"$ref": "/schemas#/2021-01/Auxiliaries.EnhancedAudioControlState"
},
"enhancedAudioSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.EnhancedAudioSensorState"
},
"enhancedMicrophoneControlState": {
"$ref": "/schemas#/2021-01/Auxiliaries.EnhancedMicrophoneControlState"
},
"fasciaMicrophoneSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.FasciaMicrophoneSensorState"
},
"handsetSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.HandsetSensorState"
},
"headsetMicrophoneSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.HeadsetMicrophoneSensorState"
},
"heatSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.HeatSensorState"
},
"heatingState": {
"$ref": "/schemas#/2021-01/Auxiliaries.HeatingState"
},
"internalTamperSensor": {
"$ref": "/schemas#/2021-01/Auxiliaries.InternalTamperSensorState"
},
"microphoneVolumeState": {
"$ref": "/schemas#/2021-01/Auxiliaries.MicrophoneVolumeState"
},
"openClosedIndicatorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.OpenClosedIndicatorState"
},
"operatorCallButtonSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.OperatorCallButtonSensorState"
},
"operatorSwitch": {
"$ref": "/schemas#/2021-01/Auxiliaries.OperatorSwitchState"
},
"proximitySensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.ProximitySensorState"
},
"safeDoorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.SafeDoorState"
},
"seismicSensorState": {
"$ref": "/schemas#/2021-01/Auxiliaries.SeismicSensorState"
},
"signageDisplayState": {
"$ref": "/schemas#/2021-01/Auxiliaries.SignageDisplayState"
},
"tamperSensor": {
"$ref": "/schemas#/2021-01/Auxiliaries.TamperSensorState"
},
"upsState": {
"$ref": "/schemas#/2021-01/Auxiliaries.UPSState"
},
"vandalShieldState": {
"$ref": "/schemas#/2021-01/Auxiliaries.VandalShieldState"
},
"volumeState": {
"$ref": "/schemas#/2021-01/Auxiliaries.VolumeState"
}
},
"type": "object"
}
},
"Auxiliaries.ClearAutoStartUpTimeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"type": "object"
}
},
"Auxiliaries.GetAutoStartUpTimeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/Auxiliaries.AutoStartUpTime"
}
],
"type": "object"
}
},
"Auxiliaries.RegisterCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Auxiliaries.Register"
}
],
"type": "object"
}
},
"Auxiliaries.RegisterCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidAuxiliary"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Auxiliaries.SetAutoStartUpTimeCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Auxiliaries.AutoStartUpTime"
}
],
"type": "object"
}
},
"Auxiliaries.SetAutoStartUpTimeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"type": "object"
}
},
"Auxiliaries.SetAuxiliariesCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Auxiliaries.SetAuxiliaries"
}
],
"type": "object"
}
},
"Auxiliaries.SetAuxiliariesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidAuxiliary"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"BarcodeReader.ReadCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"symbologies": {
"$ref": "/schemas#/2021-01/BarcodeReader.SymbologiesProperties",
"type": "object"
}
}
}
],
"type": "object"
}
},
"BarcodeReader.ReadCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"barcodeInvalid"
],
"type": "string"
},
"readOutput": {
"items": {
"properties": {
"barcodeData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"symbology": {
"enum": [
"ean128",
"ean8",
"ean8_2",
"ean8_5",
"ean13",
"ean13_2",
"ean13_5",
"jan13",
"upcA",
"upcE0",
"upcE0_2",
"upcE0_5",
"upcE1",
"upcE1_2",
"upcE1_5",
"upcA_2",
"upcA_5",
"codabar",
"itf",
"code11",
"code39",
"code49",
"code93",
"code128",
"msi",
"plessey",
"std2Of5",
"std2Of5Iata",
"pdf417",
"microPdf417",
"dataMatrix",
"maxiCode",
"codeOne",
"channelCode",
"telepenOriginal",
"telepenAim",
"rss",
"rssExpanded",
"rssRestricted",
"compositeCodeA",
"compositeCodeB",
"compositeCodeC",
"posiCodeA",
"posiCodeB",
"triopticCode39",
"codablockF",
"code16K",
"qrCode",
"aztec",
"ukPost",
"planet",
"postnet",
"canadianPost",
"netherlandsPost",
"australianPost",
"japanesePost",
"chinesePost",
"koreanPost",
"symbologyUnknown"
],
"type": "string"
},
"symbologyName": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"Biometric.ClearCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"clearData": {
"$ref": "/schemas#/2021-01/Biometric.ClearData"
}
}
}
],
"type": "object"
}
},
"Biometric.DataClearedEvent": {
"1.0": {
"properties": {
"clearData": {
"$ref": "/schemas#/2021-01/Biometric.ClearData"
}
},
"type": "object"
}
},
"Biometric.GetStorageInfoCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noImportedData"
],
"type": "string"
},
"templates": {
"$ref": "/schemas#/2021-01/Biometric.Templates"
}
}
}
],
"type": "object"
}
},
"Biometric.ImportCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"dataList"
]
},
{
"properties": {
"templates": {
"items": {
"$ref": "/schemas#/2021-01/Biometric.BioData"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"Biometric.ImportCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidData",
"formatNotSupported",
"capacityExceeded",
"keyNotFound"
],
"type": "string"
},
"templates": {
"$ref": "/schemas#/2021-01/Biometric.Templates"
}
}
}
],
"type": "object"
}
},
"Biometric.MatchCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Biometric.Match"
}
],
"type": "object"
}
},
"Biometric.MatchCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"candidates": {
"patternProperties": {
"^id[0-9A-Za-z]+$": {
"properties": {
"confidenceLevel": {
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"templateData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"errorCode": {
"enum": [
"noImportedData",
"modeNotSupported",
"noCaptureData",
"invalidCompareMode",
"invalidThreshold"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Biometric.OrientationEvent": {
"1.0": {}
},
"Biometric.PresentSubjectEvent": {
"1.0": {}
},
"Biometric.ReadCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"type",
"numCaptures",
"mode"
]
},
{
"properties": {
"dataTypes": {
"items": {
"$ref": "/schemas#/2021-01/Biometric.DataType"
},
"type": "array"
},
"mode": {
"enum": [
"scan",
"match"
],
"type": "string"
},
"numCaptures": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Biometric.ReadCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"dataRead": {
"items": {
"$ref": "/schemas#/2021-01/Biometric.BioData"
},
"type": "array"
},
"errorCode": {
"enum": [
"readFailed",
"modeNotSupported",
"formatNotSupported",
"keyNotFound"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Biometric.RemoveSubjectEvent": {
"1.0": {}
},
"Biometric.ResetCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"clearData": {
"$ref": "/schemas#/2021-01/Biometric.ClearData"
}
}
}
],
"type": "object"
}
},
"Biometric.SetDataPersistenceCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"persistenceMode"
]
},
{
"properties": {
"persistenceMode": {
"enum": [
"persist",
"clear"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Biometric.SetDataPersistenceCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"modeNotSupported"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Biometric.SetMatchCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Biometric.Match"
}
],
"type": "object"
}
},
"Biometric.SetMatchCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidIdentifier",
"modeNotSupported",
"noImportedData",
"invalidThreshold"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Biometric.SubjectDetectedEvent": {
"1.0": {}
},
"Biometric.SubjectRemovedEvent": {
"1.0": {}
},
"Camera.InvalidDataEvent": {
"1.0": {}
},
"Camera.MediaThresholdEvent": {
"1.0": {
"properties": {
"mediaThreshold": {
"enum": [
"ok",
"high",
"full"
],
"type": "string"
}
},
"type": "object"
}
},
"Camera.TakePictureCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"camData": {
"type": "string"
},
"camera": {
"enum": [
"room",
"person",
"exitSlot"
],
"type": "string"
},
"pictureFile": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.CardActionEvent": {
"1.0": {
"properties": {
"from": {
"pattern": "^unknown$|^exit$|^transport$|^unit[0-9A-Za-z]+$",
"type": "string"
},
"to": {
"pattern": "^exit$|^transport$|^unit[0-9A-Za-z]+$",
"type": "string"
}
},
"type": "object"
}
},
"CardReader.ChipIOCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"chipData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"chipProtocol": {
"enum": [
"chipT0",
"chipT1",
"chipProtocolNotRequired",
"chipTypeAPart3",
"chipTypeAPart4",
"chipTypeB",
"chipTypeNFC"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.ChipIOCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"chipData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"chipProtocol": {
"enum": [
"chipT0",
"chipT1",
"chipProtocolNotRequired",
"chipTypeAPart3",
"chipTypeAPart4",
"chipTypeB",
"chipTypeNFC"
],
"type": "string"
},
"errorCode": {
"enum": [
"mediaJam",
"noMedia",
"invalidMedia",
"invalidData",
"protocolNotSupported",
"atrNotObtained",
"cardCollision"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.ChipPowerCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"chipPower": {
"enum": [
"cold",
"warm",
"off"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.ChipPowerCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"chipData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"chipPowerNotSupported",
"mediaJam",
"noMedia",
"invalidMedia",
"invalidData",
"atrNotObtained"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessConfigureCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"aidData": {
"items": {
"properties": {
"aid": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"configData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"kernelIdentifier": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"partialSelection": {
"type": "boolean"
},
"transactionType": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"keyData": {
"items": {
"properties": {
"caPublicKey": {
"properties": {
"algorithmIndicator": {
"type": "integer"
},
"checksum": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"exponent": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"index": {
"type": "integer"
},
"modulus": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
},
"type": "object"
},
"rid": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"terminalData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessConfigureCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidTerminalData",
"invalidAidData",
"invalidKeyData"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessIssuerUpdateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"required": [
"data"
],
"type": "object"
}
},
"CardReader.EMVClessIssuerUpdateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"chip": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessIssuerUpdateEMVClessTxOutputData"
},
"errorCode": {
"enum": [
"noMedia",
"invalidMedia",
"transactionNotInitiated"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessPerformTransactionCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessPerformTransactionCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"chip": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessPerformTransactionEMVClessTxOutputData"
},
"errorCode": {
"enum": [
"noMedia",
"invalidMedia",
"readerNotConfigured"
],
"type": "string"
},
"track1": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessPerformTransactionEMVClessTxOutputData"
},
"track2": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessPerformTransactionEMVClessTxOutputData"
},
"track3": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessPerformTransactionEMVClessTxOutputData"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessQueryApplicationsCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"appData": {
"items": {
"properties": {
"aid": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"kernelIdentifier": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"CardReader.EMVClessReadStatusEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CardReader.EMVClessUI"
}
},
"CardReader.InsertCardEvent": {
"1.0": {}
},
"CardReader.InvalidMediaEvent": {
"1.0": {}
},
"CardReader.MediaDetectedEvent": {
"1.0": {
"properties": {
"position": {
"pattern": "^exit$|^transport$|^jammed$|^unit[0-9A-Za-z]+$",
"type": "string"
}
},
"type": "object"
}
},
"CardReader.MediaInsertedEvent": {
"1.0": {}
},
"CardReader.MediaRemovedEvent": {
"1.0": {}
},
"CardReader.MoveCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"from": {
"default": "transport",
"pattern": "^exit$|^transport$|^unit[0-9A-Za-z]+$",
"type": "string"
},
"to": {
"default": "exit",
"pattern": "^exit$|^transport$|^unit[0-9A-Za-z]+$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.MoveCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"mediaJam",
"shutterFail",
"noMedia",
"occupied",
"full",
"mediaRetained"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.QueryIFMIdentifierCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"ifmIdentifiers": {
"patternProperties": {
"^emv$|^europay$|^visa$|^giecb$": {
"type": "string"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"CardReader.ReadRawDataCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"backImage": {
"default": false,
"type": "boolean"
},
"chip": {
"default": false,
"type": "boolean"
},
"ddi": {
"default": false,
"type": "boolean"
},
"fluxInactive": {
"default": false,
"type": "boolean"
},
"frontImage": {
"default": false,
"type": "boolean"
},
"memoryChip": {
"default": false,
"type": "boolean"
},
"security": {
"default": false,
"type": "boolean"
},
"track1": {
"default": false,
"type": "boolean"
},
"track1Front": {
"default": false,
"type": "boolean"
},
"track1JIS": {
"default": false,
"type": "boolean"
},
"track2": {
"default": false,
"type": "boolean"
},
"track3": {
"default": false,
"type": "boolean"
},
"track3JIS": {
"default": false,
"type": "boolean"
},
"watermark": {
"default": false,
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"CardReader.ReadRawDataCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"backImage": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"chip": {
"items": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"type": "array"
},
"ddi": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"errorCode": {
"enum": [
"mediaJam",
"shutterFail",
"noMedia",
"invalidMedia",
"cardTooShort",
"cardTooLong",
"securityFail",
"cardCollision"
],
"type": "string"
},
"frontImage": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"memoryChip": {
"properties": {
"data": {
"type": "string"
},
"protocol": {
"enum": [
"chipT0",
"chipT1",
"chipTypeAPart3",
"chipTypeAPart4",
"chipTypeB",
"chipTypeNFC"
],
"type": "string"
},
"status": {
"$ref": "/schemas#/2021-01/CardReader.CardDataStatus"
}
},
"type": "object"
},
"security": {
"properties": {
"data": {
"enum": [
"readLevel1",
"readLevel2",
"readLevel3",
"readLevel4",
"readLevel5",
"badReadLevel",
"noData",
"dataInvalid",
"hardwareError",
"notInitialized"
],
"type": "string"
},
"status": {
"$ref": "/schemas#/2021-01/CardReader.CardDataStatus"
}
},
"type": "object"
},
"track1": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"track1Front": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"track1JIS": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"track2": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"track3": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"track3JIS": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
},
"watermark": {
"$ref": "/schemas#/2021-01/CardReader.CardData"
}
}
}
],
"type": "object"
}
},
"CardReader.ResetCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"storageId": {
"$ref": "/schemas#/2021-01/Storage.UnitName"
},
"to": {
"enum": [
"exit",
"retain",
"currentPosition"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.ResetCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"mediaJam",
"shutterFail",
"retainBinFull"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.SetKeyCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"keyValue": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.SetKeyCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidKey"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CardReader.TrackDetectedEvent": {
"1.0": {
"properties": {
"frontTrack1": {
"default": false,
"type": "boolean"
},
"track1": {
"default": false,
"type": "boolean"
},
"track2": {
"default": false,
"type": "boolean"
},
"track3": {
"default": false,
"type": "boolean"
},
"watermark": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}
},
"CardReader.WriteRawDataCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"items": {
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"destination": {
"enum": [
"track1",
"track2",
"track3",
"track1Front",
"track1JIS",
"track3JIS"
],
"type": "string"
},
"writeMethod": {
"default": "\"auto\"",
"enum": [
"loco",
"hico",
"auto"
],
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"CardReader.WriteRawDataCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"mediaJam",
"shutterFail",
"noMedia",
"invalidMedia",
"writeMethod",
"cardTooShort",
"cardTooLong"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CashInCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"tooManyItems",
"noItems",
"exchangeActive",
"shutterNotClosed",
"noCashInActive",
"positionNotEmpty",
"safeDoorOpen",
"foreignItemsDetected",
"shutterNotOpen"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashManagement.StorageCashCounts"
}
],
"type": "object"
}
},
"CashAcceptor.CashInEndCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"noItems",
"exchangeActive",
"noCashInActive",
"positionNotEmpty",
"safeDoorOpen"
],
"type": "string"
},
"storage": {
"$ref": "/schemas#/2021-01/CashManagement.Storage",
"type": "object"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CashInRollbackCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"shutterNotOpen",
"exchangeActive",
"noCashInActive",
"positionNotEmpty",
"noItems"
],
"type": "string"
},
"storage": {
"$ref": "/schemas#/2021-01/CashManagement.Storage",
"type": "object"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CashInStartCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.CashInStart"
}
]
}
},
"CashAcceptor.CashInStartCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidTellerId",
"unsupportedPosition",
"exchangeActive",
"cashInActive",
"safeDoorOpen"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CashUnitCountCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.Count"
}
]
}
},
"CashAcceptor.CashUnitCountCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCashUnit",
"cashInActive",
"exchangeActive",
"tooManyItemsToCount",
"countPositionNotEmpty",
"cashUnitError"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CompareSignatureCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.CompareSignature"
}
]
}
},
"CashAcceptor.CompareSignatureCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashInActive",
"exchangeActive",
"invalidReferenceSignature",
"invalidTransactionSignature"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.CompareResult"
}
],
"type": "object"
}
},
"CashAcceptor.ConfigureNoteReaderCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.ConfigureNoteReader"
}
]
}
},
"CashAcceptor.ConfigureNoteReaderCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"exchangeActive",
"cashInActive",
"loadFailed"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.ConfigureNoteReaderOut"
}
],
"type": "object"
}
},
"CashAcceptor.ConfigureNoteTypesCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ConfigureNotes"
}
]
}
},
"CashAcceptor.ConfigureNoteTypesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"exchangeActive",
"cashInActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.CreateSignatureCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"tooManyItems",
"noItems",
"cashInActive",
"exchangeActive",
"positionNotEmpty",
"shutterNotOpen",
"shutterNotClosed",
"foreignItemsDetected"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashManagement.Signature"
}
],
"type": "object"
}
},
"CashAcceptor.DepleteCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.Deplete"
}
]
}
},
"CashAcceptor.DepleteCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"invalidCashUnit",
"cashInActive",
"exchangeActive"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.DepRes"
}
],
"type": "object"
}
},
"CashAcceptor.DeviceLockControlCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.DeviceLockControl"
}
]
}
},
"CashAcceptor.DeviceLockControlCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCashUnit",
"cashInActive",
"exchangeActive",
"deviceLockFailure"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.GetCashInStatusCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.CashInStatus"
}
]
}
},
"CashAcceptor.GetDepleteSourceCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.DepInfo"
}
]
}
},
"CashAcceptor.GetDepleteSourceCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.DepInfoRes"
}
]
}
},
"CashAcceptor.GetDeviceLockStatusCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.DeviceLockStatus"
}
]
}
},
"CashAcceptor.GetPositionCapabilitiesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.PosCapabilities"
}
]
}
},
"CashAcceptor.GetPresentStatusCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.PresentStatus"
}
]
}
},
"CashAcceptor.GetReplenishTargetCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.RepInfo"
}
]
}
},
"CashAcceptor.GetReplenishTargetCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.RepInfoRes"
}
]
}
},
"CashAcceptor.IncompleteDepleteEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashAcceptor.Incompletedeplete"
}
},
"CashAcceptor.IncompleteReplenishEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashAcceptor.IncompleteReplenish"
}
},
"CashAcceptor.InputRefuseEvent": {
"1.0": {
"properties": {
"reason": {
"enum": [
"cashInUnitFull",
"invalidBill",
"noBillsToDeposit",
"depositFailure",
"commonInputComponentFailure",
"stackerFull",
"foreignItemsDetected",
"invalidBunch",
"counterfeit",
"limitOverTotalItems",
"limitOverAmount"
],
"type": "string"
}
},
"type": "object"
}
},
"CashAcceptor.InsertItemsEvent": {
"1.0": {}
},
"CashAcceptor.PreparePresentCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.MoveItems"
}
]
}
},
"CashAcceptor.PreparePresentCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"unsupportedPosition",
"positionNotEmpty",
"noItems",
"cashUnitError"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.MoveItems"
}
],
"type": "object"
}
},
"CashAcceptor.PresentMediaCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.Present"
}
]
}
},
"CashAcceptor.PresentMediaCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"unsupportedPosition",
"shutterNotOpen",
"noItems",
"exchangeActive",
"foreignItemsDetected"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashAcceptor.ReplenishCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.Rep"
}
]
}
},
"CashAcceptor.ReplenishCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"invalidCashUnit",
"exchangeActive",
"cashInActive"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashAcceptor.RepRes"
}
],
"type": "object"
}
},
"CashAcceptor.SubCashInEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashManagement.StorageCashCounts"
}
},
"CashDispenser.CountCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.CountUnits"
}
],
"type": "object"
}
},
"CashDispenser.CountCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"unsupportedPosition",
"safeDoorOpen",
"exchangeActive"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashDispenser.Count"
}
],
"type": "object"
}
},
"CashDispenser.DelayedDispenseEvent": {
"1.0": {
"properties": {
"delay": {
"type": "number"
}
},
"type": "object"
}
},
"CashDispenser.DenominateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.DenominateRequest"
}
],
"type": "object"
}
},
"CashDispenser.DenominateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCurrency",
"invalidTellerID",
"cashUnitError",
"invalidDenomination",
"invalidMixNumber",
"noCurrencyMix",
"notDispensable",
"tooManyItems",
"exchangeActive",
"noCashBoxPresent",
"amountNotInMixTable"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashDispenser.Denomination"
}
],
"type": "object"
}
},
"CashDispenser.DispenseCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.DispenseRequest"
}
],
"type": "object"
}
},
"CashDispenser.DispenseCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCurrency",
"invalidTellerID",
"cashUnitError",
"invalidDenomination",
"invalidMixNumber",
"noCurrencyMix",
"notDispensable",
"tooManyItems",
"unsupportedPosition",
"exchangeActive",
"noCashBoxPresent",
"amountNotInMixTable",
"itemsLeft",
"shutterOpen"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashDispenser.Dispense"
}
],
"type": "object"
}
},
"CashDispenser.GetMixTableCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mix": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashDispenser.GetMixTableCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidMix"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashDispenser.MixTable"
}
],
"type": "object"
}
},
"CashDispenser.GetMixTypesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.Mixes"
}
],
"type": "object"
}
},
"CashDispenser.GetPresentStatusCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"nonce": {
"pattern": "^[0-9A-F]{32}$|^[0-9]*$",
"type": "string"
},
"position": {
"$ref": "/schemas#/2021-01/CashManagement.OutputPosition"
}
}
}
],
"type": "object"
}
},
"CashDispenser.GetPresentStatusCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"unsupportedPosition"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashDispenser.PresentStatus"
}
],
"type": "object"
}
},
"CashDispenser.IncompleteDispenseEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashDispenser.Denomination"
}
},
"CashDispenser.PrepareDispenseCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.PrepareDispense"
}
],
"type": "object"
}
},
"CashDispenser.PresentCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.OutputPosition"
}
}
}
],
"type": "object"
}
},
"CashDispenser.PresentCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"shutterNotOpen",
"shutterOpen",
"noItems",
"exchangeActive",
"presentErrorNoItems",
"presentErrorItems",
"presentErrorUnknown",
"unsupportedPosition"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashManagement.PositionInfo"
}
],
"type": "object"
}
},
"CashDispenser.RejectCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"noItems",
"exchangeActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashDispenser.SetMixTableCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashDispenser.MixTable"
}
],
"type": "object"
}
},
"CashDispenser.SetMixTableCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidMixNumber",
"invalidMixTable"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashDispenser.StartDispenseEvent": {
"1.0": {}
},
"CashDispenser.TestCashUnitsCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ItemPosition"
}
],
"type": "object"
}
},
"CashDispenser.TestCashUnitsCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"unsupportedPosition",
"shutterNotOpen",
"shutterOpen",
"invalidCashUnit",
"exchangeActive",
"presentErrorNoItems",
"presentErrorItems",
"presentErrorUnknown"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.CalibrateCashUnitCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.CalibrateCommand"
}
],
"type": "object"
}
},
"CashManagement.CalibrateCashUnitCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"unsupportedPosition",
"exchangeActive",
"invalidCashUnit"
],
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/CashManagement.CalibrateCompletion"
}
],
"type": "object"
}
},
"CashManagement.CloseShutterCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.Position"
}
},
"type": "object"
}
]
}
},
"CashManagement.CloseShutterCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"unsupportedPosition",
"shutterClosed",
"exchangeActive",
"shutterNotClosed",
"tooManyItems",
"foreignItemsDetected"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.EndExchangeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"storageUnitError",
"noExchangeActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.GetBankNoteTypesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.BankNotes"
}
]
}
},
"CashManagement.GetClassificationListCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ClassificationList"
}
],
"type": "object"
}
},
"CashManagement.GetItemInfoCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.GetItemInfo"
}
],
"type": "object"
}
},
"CashManagement.GetItemInfoCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ItemInfos"
}
],
"type": "object"
}
},
"CashManagement.GetTellerInfoCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.TellerInfo"
}
],
"type": "object"
}
},
"CashManagement.GetTellerInfoCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCurrency",
"invalidTellerId"
],
"type": "string"
},
"tellerDetails": {
"items": {
"$ref": "/schemas#/2021-01/CashManagement.TellerDetails"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"CashManagement.IncompleteRetractEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashManagement.IncompleteRetract"
}
},
"CashManagement.InfoAvailableEvent": {
"1.0": {
"properties": {
"itemInfoSummary": {
"items": {
"$ref": "/schemas#/2021-01/CashManagement.ItemInfoSummary"
},
"type": "array"
}
},
"type": "object"
}
},
"CashManagement.ItemsInsertedEvent": {
"1.0": {
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.Position"
}
},
"type": "object"
}
},
"CashManagement.ItemsPresentedEvent": {
"1.0": {
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.PositionInfo"
}
},
"type": "object"
}
},
"CashManagement.ItemsTakenEvent": {
"1.0": {
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.PositionInfo"
}
},
"type": "object"
}
},
"CashManagement.MediaDetectedEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashManagement.ItemPosition"
}
},
"CashManagement.NoteErrorEvent": {
"1.0": {
"properties": {
"reason": {
"enum": [
"doubleNote",
"longNote",
"skewedNote",
"incorrectCount",
"notesTooClose",
"otherNoteError",
"shortNote"
],
"type": "string"
}
},
"type": "object"
}
},
"CashManagement.OpenSafeDoorCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"exchangeActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.OpenShutterCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"position": {
"$ref": "/schemas#/2021-01/CashManagement.Position"
}
},
"type": "object"
}
]
}
},
"CashManagement.OpenShutterCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"unsupportedPosition",
"shutterNotOpen",
"shutterOpen",
"exchangeActive",
"foreignItemsDetected"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.ResetCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ItemPosition"
}
]
}
},
"CashManagement.ResetCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"unsupportedPosition",
"invalidCashUnit",
"invalidRetractPosition",
"notRetractArea",
"positionNotEmpty",
"foreignItemsDetected",
"incompleteRetract"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.RetractCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.Retract"
}
]
}
},
"CashManagement.RetractCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"cashUnitError",
"noItems",
"exchangeActive",
"shutterNotClosed",
"itemsTaken",
"invalidRetractPosition",
"notRetractArea",
"foreignItemsDetected",
"incompleteRetract"
],
"type": "string"
},
"storage": {
"$ref": "/schemas#/2021-01/CashManagement.Storage",
"type": "object"
}
}
}
],
"type": "object"
}
},
"CashManagement.SafeDoorClosedEvent": {
"1.0": {}
},
"CashManagement.SafeDoorOpenEvent": {
"1.0": {}
},
"CashManagement.SetClassificationListCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.ClassificationList"
}
],
"type": "object"
}
},
"CashManagement.SetTellerInfoCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/CashManagement.TellerUpdate"
}
],
"type": "object"
}
},
"CashManagement.SetTellerInfoCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidCurrency",
"invalidTellerId",
"unsupportedPosition",
"exchangeActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"CashManagement.ShutterStatusChangedEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/CashManagement.ShutterStatusChanged"
}
},
"CashManagement.TellerInfoChangedEvent": {
"1.0": {
"properties": {
"tellerID": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
}
},
"Common.Acknowledge": {
"1.0": {
"properties": {
"errorDescription": {
"type": "string"
},
"status": {
"enum": [
"ok",
"invalidMessage",
"invalidRequestID",
"tooManyRequests"
],
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}
},
"Common.CancelCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"requestIds": {
"items": {
"minimum": 1,
"type": "integer"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
}
}
],
"type": "object"
}
},
"Common.CancelCommandCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noMatchingRequestIDs"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Common.CapabilitiesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/Common.Caps"
}
],
"type": "object"
}
},
"Common.ClearCommandNonce": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
}
],
"type": "object"
}
},
"Common.ClearCommandNonceCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"type": "object"
}
},
"Common.Command": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
}
],
"type": "object"
}
},
"Common.Completion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"type": "object"
}
},
"Common.ErrorEvent": {
"1.0": {
"properties": {
"action": {
"enum": [
"reset",
"softwareError",
"configuration",
"clear",
"maintenance",
"suspend"
],
"type": "string"
},
"eventId": {
"enum": [
"hardware",
"software",
"user",
"fraudAttempt"
],
"type": "string"
},
"vendorDescription": {
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}
},
"Common.GetCommandNonce": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
}
],
"type": "object"
}
},
"Common.GetCommandNonceCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"properties": {
"commandNonce": {
"pattern": "^[0-9A-F]{32}$|^[0-9]*$",
"type": "string"
}
},
"type": "object"
}
},
"Common.GetTransactionStateCompletion": {
"1.0": {
"$ref": "/schemas#/2021-01/Common.TransactionState"
}
},
"Common.NonceClearedEvent": {
"1.0": {
"properties": {
"reasonDescription": {
"type": "string"
}
},
"type": "object"
}
},
"Common.PowerSaveControlCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"maxPowerSaveRecoveryTime": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Common.SetTransactionStateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Common.TransactionState"
}
],
"type": "object"
}
},
"Common.SetVersionsCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"commands": {
"minProperties": 1,
"patternProperties": {
"^[0-9A-Za-z]*\\.[0-9A-Za-z]*$": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"events": {
"minProperties": 1,
"patternProperties": {
"^[0-9A-Za-z]*\\.[0-9A-Za-z]*$": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"Common.StatusChangedEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Common.StatusProperties"
}
},
"Common.StatusCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/Common.Status"
}
],
"type": "object"
}
},
"Crypto.CryptoDataCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"key",
"data"
]
},
{
"properties": {
"key": {
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/Crypto.IVProperties"
},
{
"$ref": "/schemas#/2021-01/Crypto.PaddingProperty"
},
{
"properties": {
"cryptoMethod": {
"enum": [
"ecb",
"cbc",
"cfb",
"ofb",
"ctr",
"xts",
"rsaesPkcs1V15",
"rsaesOaep"
],
"type": "string"
},
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"modeOfUse": {
"pattern": "^[DE]$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.CryptoDataCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"accessDenied",
"keyNotFound",
"keyNoValue",
"useViolation",
"modeOfUseNotSupported",
"invalidKeyLength",
"cryptoMethodNotSupported",
"noChipTransactionActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.DigestCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"hashAlgorithm": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
}
},
"required": [
"hashAlgorithm",
"digestInput"
]
}
],
"type": "object"
}
},
"Crypto.DigestCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"digest": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"accessDenied"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.GenerateAuthenticationCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"key",
"data"
]
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"key": {
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/Crypto.IVProperties"
},
{
"$ref": "/schemas#/2021-01/Crypto.PaddingProperty"
},
{
"$ref": "/schemas#/2021-01/Crypto.CompressionProperty"
},
{
"properties": {
"authenticationDatalength": {
"maximum": 8,
"minimum": 4,
"type": "integer"
},
"cryptoMethod": {
"enum": [
"rsassaPkcs1V15",
"rsassaPss"
],
"type": "string"
},
"hashAlgorithm": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.GenerateAuthenticationCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"authenticationData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"accessDenied",
"keyNotFound",
"keyNoValue",
"useViolation",
"modeOfUseNotSupported",
"invalidKeyLength",
"algorithmNotSupported",
"cryptoMethodNotSupported",
"noChipTransactionActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.GenerateRandomCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
}
],
"type": "object"
}
},
"Crypto.GenerateRandomCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied"
],
"type": "string"
},
"randomNumber": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.VerifyAuthenticationCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"required": [
"key",
"data",
"verifyData"
]
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"key": {
"type": "string"
},
"verifyData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
},
{
"$ref": "/schemas#/2021-01/Crypto.IVProperties"
},
{
"$ref": "/schemas#/2021-01/Crypto.PaddingProperty"
},
{
"$ref": "/schemas#/2021-01/Crypto.CompressionProperty"
},
{
"properties": {
"cryptoMethod": {
"enum": [
"rsassaPkcs1V15",
"rsassaPss"
],
"type": "string"
},
"hashAlgorithm": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Crypto.VerifyAuthenticationCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"keyNotFound",
"keyNoValue",
"useViolation",
"modeOfUseNotSupported",
"invalidKeyLength",
"algorithmNotSupported",
"cryptoMethodNotSupported",
"noChipTransactionActive",
"macInvalid",
"signatureInvalid"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.CertificateChangeEvent": {
"1.0": {
"properties": {
"certificateChange": {
"enum": [
"secondary"
],
"type": "string"
}
},
"required": [
"certificateChange"
],
"type": "object"
}
},
"KeyManagement.DUKPTKSNEvent": {
"1.0": {
"properties": {
"key": {
"type": "string"
},
"ksn": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
},
"required": [
"key",
"ksn"
],
"type": "object"
}
},
"KeyManagement.DeleteKeyCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/KeyManagement.Authentication"
},
{
"$ref": "/schemas#/2021-01/KeyManagement.DeleteKeyInputParameters"
}
],
"type": "object"
}
},
"KeyManagement.DeleteKeyCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"keyNotFound",
"randomInvalid"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.DeriveKeyCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"derivationAlgorithm": {
"enum": [
"chipZka"
],
"type": "string"
},
"inputData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"iv": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"ivKey": {
"type": "string"
},
"key": {
"type": "string"
},
"keyGenKey": {
"type": "string"
},
"padding": {
"$ref": "/schemas#/2021-01/KeyManagement.Padding"
}
},
"required": [
"derivationAlgorithm",
"key",
"keyGenKey",
"inputData"
]
}
],
"type": "object"
}
},
"KeyManagement.DeriveKeyCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"keyNotFound",
"keyNoValue",
"algorithmNotSupported",
"duplicateKey",
"useViolation",
"invalidKeyLength"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.ExportRSADeviceSignedItemCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"exportItemType": {
"$ref": "/schemas#/2021-01/KeyManagement.TypeDataItemToExport"
},
"name": {
"type": "string"
},
"sigKey": {
"type": "string"
},
"signatureAlgorithm": {
"$ref": "/schemas#/2021-01/KeyManagement.RSASignatureAlgorithm"
}
}
}
],
"type": "object"
}
},
"KeyManagement.ExportRSADeviceSignedItemCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noRSAKeyPair",
"accessDenied",
"keyNotFound"
],
"type": "string"
},
"selfSignature": {
"contentEncoding": "base64",
"type": "string"
},
"signature": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"value": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.ExportRSAIssuerSignedItemCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"exportItemType": {
"$ref": "/schemas#/2021-01/KeyManagement.TypeDataItemToExport"
},
"name": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.ExportRSAIssuerSignedItemCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noRSAKeyPair",
"accessDenied",
"keyNotFound"
],
"type": "string"
},
"rsaSignatureAlgorithm": {
"$ref": "/schemas#/2021-01/KeyManagement.RSASignatureAlgorithm"
},
"signature": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"value": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GenerateKCVCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"key": {
"type": "string"
},
"keyCheckMode": {
"enum": [
"self",
"zero"
],
"type": "string"
}
},
"required": [
"key",
"keyCheckMode"
]
}
],
"type": "object"
}
},
"KeyManagement.GenerateKCVCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"keyNoValue",
"accessDenied",
"modeNotSupported"
],
"type": "string"
},
"kcv": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GenerateRSAKeyPairCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"exponentValue": {
"enum": [
"default",
"exponent1",
"exponent4",
"exponent16"
],
"type": "string"
},
"key": {
"type": "string"
},
"modulusLength": {
"minimum": 0,
"type": "integer"
},
"use": {
"enum": [
"rsaPrivate",
"rsaPrivateSign"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GenerateRSAKeyPairCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"invalidModulusLength",
"useViolation",
"duplicateKey",
"keyGenerationError"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GetCertificateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"getCertificate": {
"enum": [
"enckey",
"verificationkey",
"hostkey"
],
"type": "string"
}
},
"required": [
"getCertificate"
]
}
],
"type": "object"
}
},
"KeyManagement.GetCertificateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"certificate": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"accessDenied",
"invalidCertificateState",
"keyNotFound"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GetKeyDetailCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"keyName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.GetKeyDetailCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound"
],
"type": "string"
},
"keyDetails": {
"additionalProperties": {
"$ref": "/schemas#/2021-01/KeyManagement.KeyDetail"
},
"type": "object"
}
}
}
]
}
},
"KeyManagement.IllegalKeyAccessEvent": {
"1.0": {
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"keyNoValue",
"useViolation",
"algorithmNotSupp",
"dukptOverflow"
],
"type": "string"
},
"keyName": {
"type": "string"
}
},
"required": [
"keyName",
"errorCode"
],
"type": "object"
}
},
"KeyManagement.ImportKeyCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"constructing": {
"default": false,
"type": "boolean"
},
"decryptKey": {
"type": "string"
},
"decryptMethod": {
"enum": [
"ecb",
"cbc",
"cfb",
"ofb",
"ctr",
"xts",
"rsaesPkcs1V15",
"rsaesOaep"
],
"type": "string"
},
"key": {
"type": "string"
},
"keyAttributes": {
"properties": {
"algorithm": {
"pattern": "^[0-9ADRT]$",
"type": "string"
},
"keyUsage": {
"pattern": "^B[0-2]$|^C0$|^D[0-2]$|^E[0-6]$|^I0$|^K[0-4]$|^M[0-8]$|^P0$|^S[0-2]$|^V[0-4]$|^[0-9][0-9]$",
"type": "string"
},
"modeOfUse": {
"pattern": "^[0-9BCDEGSTVXY]$",
"type": "string"
},
"restrictedKeyUsage": {
"pattern": "^B[0-2]$|^C0$|^D[0-2]$|^E[0-6]$|^I0$|^K[0-4]$|^M[0-8]$|^P0$|^S[0-2]$|^V[0-4]$|^[0-9][0-9]$",
"type": "string"
}
},
"type": "object"
},
"value": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"vendorAttributes": {
"type": "string"
},
"verificationData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"verifyAttributes": {
"properties": {
"cryptoMethod": {
"enum": [
"kcvNone",
"kcvSelf",
"kcvZero",
"sigNone",
"rsassaPkcs1V15",
"rsassaPs"
],
"type": "string"
},
"hashAlgorithm": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
}
},
"type": "object"
},
"verifyKey": {
"type": "string"
}
},
"required": [
"key",
"value"
]
}
],
"type": "object"
}
},
"KeyManagement.ImportKeyCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"accessDenied",
"duplicateKey",
"keyNoValue",
"useViolation",
"formatNotSupported",
"invalidKeyLength",
"noKeyRam",
"signatureNotSupported",
"signatureInvalid",
"randomInvalid",
"algorithmNotSupported",
"modeNotSupported",
"cryptoMethodNotSupported"
],
"type": "string"
},
"keyLength": {
"minimum": 0,
"type": "integer"
},
"verificationData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"verifyAttributes": {
"properties": {
"algorithm": {
"pattern": "^[0-9ADRT]$",
"type": "string"
},
"cryptoMethod": {
"enum": [
"kcvNone",
"kcvSelf",
"kcvZero",
"sigNone",
"rsassaPkcs1V15",
"rsassaPs"
],
"type": "string"
},
"hashAlgorithm": {
"enum": [
"sha1",
"sha256"
],
"type": "string"
},
"keyUsage": {
"pattern": "^M[0-8]$|^S[0-2]$|^[0-9][0-9]$",
"type": "string"
},
"modeOfUse": {
"pattern": "^[0-9SV]$",
"type": "string"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"KeyManagement.InitializationCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/KeyManagement.Authentication"
},
{
"$ref": "/schemas#/2021-01/KeyManagement.InitializationInputParameters"
}
],
"type": "object"
}
},
"KeyManagement.InitializationCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"randomInvalid"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.InitializedEvent": {
"1.0": {}
},
"KeyManagement.LoadCertificateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"certificateData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"loadOption": {
"enum": [
"newHost",
"replaceHost"
],
"type": "string"
},
"signer": {
"enum": [
"certHost",
"ca",
"hl"
],
"type": "string"
}
},
"required": [
"loadOption",
"signer",
"certificateData"
]
}
],
"type": "object"
}
},
"KeyManagement.LoadCertificateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"formatInvalid",
"invalidCertificateState",
"signatureInvalid",
"randomInvalid",
"modeNotSupported"
],
"type": "string"
},
"rsaData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"rsaKeyCheckMode": {
"enum": [
"none",
"sha1",
"sha256"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.ReplaceCertificateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"replaceCertificate": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
},
"required": [
"replaceCertificate"
]
}
],
"type": "object"
}
},
"KeyManagement.ReplaceCertificateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied",
"formatInvalid",
"invalidCertificateState"
],
"type": "string"
},
"newCertificateData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"KeyManagement.StartAuthenticateCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"command": {
"oneOf": [
{
"$ref": "/schemas#/2021-01/DeleteKeyCommand"
},
{
"$ref": "/schemas#/2021-01/InitializationCommand"
}
],
"type": "object"
}
},
"required": [
"command"
]
}
],
"type": "object"
}
},
"KeyManagement.StartAuthenticateCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"dataToSign": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"signers": {
"$ref": "/schemas#/2021-01/KeyManagement.AuthenticationMethod"
}
}
}
],
"type": "object"
}
},
"KeyManagement.StartKeyExchangeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"accessDenied"
],
"type": "string"
},
"randomItem": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"Keyboard.DataEntryCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"activeKeys": {
"$ref": "/schemas#/2021-01/Keyboard.ActiveKeys"
},
"autoEnd": {
"default": false,
"type": "boolean"
},
"maxLen": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Keyboard.DataEntryCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"completion": {
"$ref": "/schemas#/2021-01/Keyboard.EntryCompletion"
},
"errorCode": {
"enum": [
"keyInvalid",
"keyNotSupported",
"noActivekeys"
],
"type": "string"
},
"keys": {
"minimum": 0,
"type": "integer"
},
"pinKeys": {
"items": {
"$ref": "/schemas#/2021-01/Keyboard.KeyPressed"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"Keyboard.DefineLayoutCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"layout": {
"$ref": "/schemas#/2021-01/Keyboard.Layout"
}
},
"required": [
"layout"
]
}
],
"type": "object"
}
},
"Keyboard.DefineLayoutCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"modeNotSupported",
"frameCoordinate",
"keyCoordinate",
"frameOverlap",
"keyOverlap",
"tooManyFrames",
"tooManyKeys",
"keyAlreadyDefined"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Keyboard.EnterDataEvent": {
"1.0": {}
},
"Keyboard.GetLayoutCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"entryMode": {
"enum": [
"data",
"pin",
"secure"
],
"type": "string"
}
},
"required": [
"entryMode"
]
}
],
"type": "object"
}
},
"Keyboard.GetLayoutCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"modeNotSupported"
],
"type": "string"
},
"layout": {
"$ref": "/schemas#/2021-01/Keyboard.Layout"
}
}
}
],
"type": "object"
}
},
"Keyboard.KeyEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Keyboard.KeyPressed"
}
},
"Keyboard.KeypressBeepCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mode": {
"properties": {
"active": {
"default": false,
"type": "boolean"
},
"inactive": {
"default": false,
"type": "boolean"
}
},
"required": [
"active",
"inactive"
],
"type": "object"
}
}
}
],
"type": "object"
}
},
"Keyboard.LayoutEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Keyboard.Layout"
}
},
"Keyboard.PinEntryCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"activeKeys": {
"$ref": "/schemas#/2021-01/Keyboard.ActiveKeys"
},
"autoEnd": {
"default": false,
"type": "boolean"
},
"echo": {
"maxLength": 1,
"minLength": 1,
"type": "string"
},
"maxLen": {
"minimum": 0,
"type": "integer"
},
"minLen": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"minLen"
]
}
],
"type": "object"
}
},
"Keyboard.PinEntryCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"completion": {
"$ref": "/schemas#/2021-01/Keyboard.EntryCompletion"
},
"digits": {
"minimum": 0,
"type": "integer"
},
"errorCode": {
"enum": [
"keyInvalid",
"keyNotSupported",
"noActivekeys",
"noTerminatekeys",
"minimumLength",
"tooManyFrames",
"partialFrame",
"entryTimeout"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Keyboard.SecureKeyEntryCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"activeKeys": {
"$ref": "/schemas#/2021-01/Keyboard.ActiveKeys"
},
"autoEnd": {
"default": false,
"type": "boolean"
},
"cryptoMethod": {
"enum": [
"des",
"tripleDes",
"aes"
],
"type": "string"
},
"keyLen": {
"enum": [
16,
32,
48
],
"type": "integer"
},
"verificationType": {
"enum": [
"self",
"zero"
],
"type": "string"
}
},
"required": [
"keyLen",
"verificationType",
"activeKeys"
]
}
],
"type": "object"
}
},
"Keyboard.SecureKeyEntryCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"completion": {
"$ref": "/schemas#/2021-01/Keyboard.EntryCompletion"
},
"digits": {
"minimum": 0,
"type": "integer"
},
"errorCode": {
"enum": [
"accessDenied",
"keyInvalid",
"keyNotSupported",
"noActiveKeys",
"noTerminatekeys",
"invalidKeyLength",
"modeNotSupported",
"tooManyFrames",
"partialFrame",
"missingKeys",
"entryTimeout"
],
"type": "string"
},
"kcv": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"Lights.SetLightCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Lights.Status"
}
],
"type": "object"
}
},
"Lights.SetLightCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidLight",
"lightError"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"PinPad.GetPinBlockCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/PinPad.PinBlock"
}
],
"type": "object"
}
},
"PinPad.GetPinBlockCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"accessDenied",
"keyNoValue",
"useViolation",
"noPin",
"formatNotSupported",
"invalidKeyLength",
"algorithmNotSupported",
"dukptOverflow",
"cryptoMethodNotSupported"
],
"type": "string"
},
"pinBlock": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
}
}
}
],
"type": "object"
}
},
"PinPad.GetQueryPCIPTSDeviceIdCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"applicationIdentifier": {
"type": "string"
},
"firmwareIdentifier": {
"type": "string"
},
"hardwareIdentifier": {
"type": "string"
},
"manufacturerIdentifier": {
"type": "string"
},
"modelIdentifier": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"PinPad.LocalDESCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"decTable": {
"pattern": "^[0-9]{16}$",
"type": "string"
},
"key": {
"type": "string"
},
"keyEncKey": {
"type": "string"
},
"maxPIN": {
"minimum": 0,
"type": "integer"
},
"noLeadingZero": {
"type": "boolean"
},
"offset": {
"pattern": "^[0-9a-fA-F]{1,16}$",
"type": "string"
},
"padding": {
"default": "00",
"pattern": "^0[0-9a-fA-F]$|^3[0-9]$|^4[1-6]$|^6[1-6]$"
},
"valDigits": {
"minimum": 0,
"type": "integer"
},
"validationData": {
"pattern": "^[0-9]{16}$",
"type": "string"
}
},
"required": [
"validationData",
"padding",
"maxPIN",
"valDigits",
"noLeadingZero",
"key",
"decTable"
]
}
],
"type": "object"
}
},
"PinPad.LocalDESCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"accessDenied",
"keyNoValue",
"useViolation",
"noPin",
"formatNotSupported",
"invalidKeyLength"
],
"type": "string"
},
"result": {
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"PinPad.LocalVisaCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"key": {
"type": "string"
},
"keyEncKey": {
"type": "string"
},
"pan": {
"pattern": "^[0-9]{23}$",
"type": "string"
},
"pvv": {
"pattern": "^[0-9]{4,}$",
"type": "string"
}
},
"required": [
"pan",
"pvv",
"pvvDigits",
"key"
]
}
],
"type": "object"
}
},
"PinPad.LocalVisaCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyNotFound",
"accessDenied",
"keyNoValue",
"useViolation",
"noPin",
"formatNotSupported",
"invalidKeyLength"
],
"type": "string"
},
"result": {
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"PinPad.MaintainPinCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"maintainPIN": {
"default": false,
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"PinPad.PresentIDCCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"algorithmData": {
"properties": {
"pinOffset": {
"minimum": 0,
"type": "integer"
},
"pinPointer": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"pinPointer",
"pinOffset"
],
"type": "object"
},
"chipData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"chipProtocol": {
"type": "string"
},
"presentAlgorithm": {
"enum": [
"presentClear"
],
"type": "string"
}
},
"required": [
"presentAlgorithm",
"chipProtocol",
"chipData",
"algorithmData"
]
}
],
"type": "object"
}
},
"PinPad.PresentIDCCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"chipData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"chipProtocol": {
"type": "string"
},
"errorCode": {
"enum": [
"accessDenied",
"noPin",
"protocolNotSupported",
"invalidData"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"PinPad.SetPinBlockDataCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/PinPad.PinBlock"
}
],
"type": "object"
}
},
"Printer.ControlMediaCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mediaControl": {
"$ref": "/schemas#/2021-01/MediaControlProperties",
"type": "object"
}
}
}
],
"type": "object"
}
},
"Printer.ControlMediaCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noMediaPresent",
"flushFail",
"retractBinFull",
"stackerFull",
"pageTurnFail",
"mediaTurnFail",
"shutterFail",
"mediaJammed",
"paperJammed",
"paperOut",
"inkOut",
"tonerOut",
"sequenceInvalid",
"mediaRetained",
"blackMark",
"mediaRetracted"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.ControlPassbookCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"action": {
"enum": [
"forward",
"backward",
"closeForward",
"closeBackward"
],
"type": "string"
},
"count": {
"minimum": 1,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.ControlPassbookCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"noMediaPresent",
"pageTurnFail",
"mediaJammed",
"passbookClosed",
"lastOrFirstPageReached",
"mediaSize"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.DefinitionLoadedEvent": {
"1.0": {
"properties": {
"name": {
"type": "string"
},
"type": {
"enum": [
"form",
"media"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.DispensePaperCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"paperSource": {
"$ref": "/schemas#/2021-01/Printer.PaperSource"
}
}
}
],
"type": "object"
}
},
"Printer.DispensePaperCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"paperJammed",
"paperOut",
"sequenceInvalid",
"sourceInvalid",
"mediaRetracted"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.FieldErrorEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Printer.FieldFail"
}
},
"Printer.FieldWarningEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Printer.FieldFail"
}
},
"Printer.GetCodelineMappingCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"codelineFormat": {
"enum": [
"cmc7",
"e13b"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.GetCodelineMappingCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"charMapping": {
"type": "string"
},
"codelineFormat": {
"enum": [
"cmc7",
"e13b"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.GetFormListCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"formList": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"Printer.GetMediaListCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"mediaList": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryFieldCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"fieldName": {
"type": "string"
},
"formName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryFieldCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"fieldNotFound",
"formInvalid",
"fieldInvalid"
],
"type": "string"
},
"fields": {
"additionalProperties": {
"properties": {
"access": {
"enum": [
"read",
"write",
"readWrite"
],
"type": "string"
},
"class": {
"enum": [
"static",
"optional",
"required"
],
"type": "string"
},
"coercivity": {
"enum": [
"auto",
"low",
"high"
],
"type": "string"
},
"format": {
"type": "string"
},
"indexCount": {
"minimum": 0,
"type": "integer"
},
"initialValue": {
"type": "string"
},
"overflow": {
"enum": [
"terminate",
"truncate",
"bestFit",
"overwrite",
"wordWrap"
],
"type": "string"
},
"type": {
"enum": [
"text",
"micr",
"ocr",
"msf",
"barcode",
"graphic",
"pagemark"
],
"type": "string"
}
},
"type": "object"
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"formName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"alignment": {
"enum": [
"topLeft",
"topRight",
"bottomLeft",
"bottomRight"
],
"type": "string"
},
"base": {
"enum": [
"inch",
"mm",
"rowColumn"
],
"type": "string"
},
"errorCode": {
"enum": [
"formNotFound",
"formInvalid"
],
"type": "string"
},
"fields": {
"items": {
"type": "string"
},
"type": "array"
},
"formName": {
"type": "string"
},
"height": {
"minimum": 0,
"type": "integer"
},
"offsetX": {
"minimum": 0,
"type": "integer"
},
"offsetY": {
"minimum": 0,
"type": "integer"
},
"orientation": {
"enum": [
"portrait",
"landscape"
],
"type": "string"
},
"unitX": {
"minimum": 0,
"type": "integer"
},
"unitY": {
"minimum": 0,
"type": "integer"
},
"userPrompt": {
"type": "string"
},
"versionMajor": {
"minimum": 0,
"type": "integer"
},
"versionMinor": {
"minimum": 0,
"type": "integer"
},
"width": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryMediaCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mediaName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.GetQueryMediaCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"base": {
"enum": [
"inch",
"mm",
"rowcolumn"
],
"type": "string"
},
"errorCode": {
"enum": [
"mediaNotFound",
"mediaInvalid"
],
"type": "string"
},
"foldType": {
"enum": [
"none",
"horizontal",
"vertical"
],
"type": "string"
},
"lineCount": {
"minimum": 0,
"type": "integer"
},
"mediaType": {
"enum": [
"generic",
"passbook",
"multipart"
],
"type": "string"
},
"pageCount": {
"minimum": 0,
"type": "integer"
},
"paperSources": {
"$ref": "/schemas#/2021-01/Printer.PaperSources"
},
"printAreaHeight": {
"minimum": 0,
"type": "integer"
},
"printAreaWidth": {
"minimum": 0,
"type": "integer"
},
"printAreaX": {
"minimum": 0,
"type": "integer"
},
"printAreaY": {
"minimum": 0,
"type": "integer"
},
"restrictedAreaHeight": {
"minimum": 0,
"type": "integer"
},
"restrictedAreaWidth": {
"minimum": 0,
"type": "integer"
},
"restrictedAreaX": {
"minimum": 0,
"type": "integer"
},
"restrictedAreaY": {
"minimum": 0,
"type": "integer"
},
"sizeHeight": {
"minimum": 0,
"type": "integer"
},
"sizeWidth": {
"minimum": 0,
"type": "integer"
},
"stagger": {
"minimum": 0,
"type": "integer"
},
"unitX": {
"minimum": 0,
"type": "integer"
},
"unitY": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.InkThresholdEvent": {
"1.0": {
"properties": {
"state": {
"enum": [
"full",
"low",
"out"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.LampThresholdEvent": {
"1.0": {
"properties": {
"state": {
"enum": [
"ok",
"fading",
"inop"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.LoadDefinitionCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"definition": {
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"Printer.LoadDefinitionCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formInvalid",
"mediaInvalid",
"definitionExists"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.MediaAutoRetractedEvent": {
"1.0": {
"properties": {
"binNumber": {
"minimum": 0,
"type": "integer"
},
"retractResult": {
"enum": [
"ok",
"jammed"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.MediaDetectedEvent": {
"1.0": {
"properties": {
"position": {
"enum": [
"retracted",
"present",
"entering",
"jammed",
"unknown",
"expelled"
],
"type": "string"
},
"retractBinNumber": {
"type": "integer"
}
},
"type": "object"
}
},
"Printer.MediaExtentsCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"base": {
"enum": [
"inches",
"mm",
"rowColumn"
],
"type": "string"
},
"unitX": {
"minimum": 0,
"type": "integer"
},
"unitY": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.MediaExtentsCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"extentNotSupported",
"mediaJammed",
"lampInoperative",
"mediaSize",
"mediaRejected"
],
"type": "string"
},
"sizeX": {
"minimum": 0,
"type": "integer"
},
"sizeY": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.MediaInsertedEvent": {
"1.0": {}
},
"Printer.MediaInsertedUnsolicitedEvent": {
"1.0": {}
},
"Printer.MediaPresentedEvent": {
"1.0": {
"properties": {
"totalWads": {
"minimum": 0,
"type": "integer"
},
"wadIndex": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
},
"Printer.MediaPresentedUnsolicitedEvent": {
"1.0": {
"properties": {
"totalWads": {
"minimum": 0,
"type": "integer"
},
"wadIndex": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
},
"Printer.MediaRejectedEvent": {
"1.0": {
"properties": {
"reason": {
"enum": [
"short",
"long",
"multiple",
"align",
"moveToAlign",
"shutter",
"escrow",
"thick",
"other"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.MediaTakenEvent": {
"1.0": {}
},
"Printer.NoMediaEvent": {
"1.0": {
"properties": {
"userPrompt": {
"type": "string"
}
},
"type": "object"
}
},
"Printer.PaperThresholdEvent": {
"1.0": {
"properties": {
"paperSource": {
"$ref": "/schemas#/2021-01/Printer.PaperSource"
},
"threshold": {
"enum": [
"full",
"low",
"out"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.PrintFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"alignment": {
"enum": [
"formDefinition",
"topLeft",
"topRight",
"bottomLeft",
"bottomRight"
],
"type": "string"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"formName": {
"type": "string"
},
"mediaControl": {
"$ref": "/schemas#/2021-01/MediaControlProperties",
"type": "object"
},
"mediaName": {
"type": "string"
},
"offsetX": {
"minimum": 0,
"type": "integer"
},
"offsetY": {
"minimum": 0,
"type": "integer"
},
"paperSource": {
"$ref": "/schemas#/2021-01/Printer.PaperSource"
},
"resolution": {
"enum": [
"low",
"medium",
"high",
"veryHigh"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.PrintFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"flushFail",
"mediaOverflow",
"fieldSpecFailure",
"fieldError",
"mediaNotFound",
"mediaInvalid",
"formInvalid",
"mediaSkewed",
"retractBinFull",
"stackerFull",
"pageTurnFail",
"mediaTurnFail",
"shutterFail",
"mediaJammed",
"charSetData",
"paperJammed",
"paperOut",
"inkOut",
"tonerOut",
"sequenceInvalid",
"sourceInvalid",
"mediaRetained",
"blackMark",
"mediaSize",
"mediaRejected",
"mediaRetracted",
"msfError",
"noMSF"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.PrintNativeCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"mediaControl": {
"$ref": "/schemas#/2021-01/MediaControlProperties",
"type": "object"
},
"paperSource": {
"$ref": "/schemas#/2021-01/Printer.PaperSource"
}
}
}
],
"type": "object"
}
},
"Printer.PrintNativeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"shutterFail",
"mediaJammed",
"paperJammed",
"paperOut",
"tonerOut",
"noMediaPresent",
"flushFail",
"retractBinFull",
"stackerFull",
"pageTurnFail",
"mediaTurnFail",
"inkOut",
"sequenceInvalid",
"mediaOverflow",
"mediaRetained",
"blackMark",
"sourceInvalid",
"mediaRejected",
"mediaRetracted"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.PrintRawCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"inputData": {
"enum": [
"no",
"yes"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.PrintRawCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"errorCode": {
"enum": [
"shutterFail",
"mediaJammed",
"paperJammed",
"paperOut",
"tonerOut",
"mediaRetained",
"blackMark",
"mediaRetracted"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.ReadFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"fieldNames": {
"items": {
"type": "string"
},
"type": "array"
},
"formName": {
"type": "string"
},
"mediaControl": {
"$ref": "/schemas#/2021-01/MediaControlProperties",
"type": "object"
},
"mediaName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.ReadFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"readNotSupported",
"fieldSpecFailure",
"fieldError",
"mediaNotFound",
"mediaInvalid",
"formInvalid",
"mediaSkewed",
"retractBinFull",
"shutterFail",
"mediaJammed",
"inkOut",
"lampInoperative",
"sequenceInvalid",
"mediaSize",
"mediaRejected",
"msfError",
"noMSF"
],
"type": "string"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"Printer.ReadImageCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"backImageColorFormat": {
"enum": [
"binary",
"grayscale",
"fullcolor"
],
"type": "string"
},
"backImageType": {
"enum": [
"tif",
"wmf",
"bmp",
"jpg"
],
"type": "string"
},
"codelineFormat": {
"enum": [
"cmc7",
"e13b",
"ocr"
],
"type": "string"
},
"frontImageColorFormat": {
"enum": [
"binary",
"grayscale",
"fullcolor"
],
"type": "string"
},
"frontImageType": {
"enum": [
"tif",
"wmf",
"bmp",
"jpg"
],
"type": "string"
},
"imageSource": {
"properties": {
"back": {
"type": "boolean"
},
"codeline": {
"type": "boolean"
},
"front": {
"type": "boolean"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"Printer.ReadImageCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"shutterFail",
"mediaJammed",
"lampInoperative",
"mediaSize",
"mediaRejected"
],
"type": "string"
},
"images": {
"properties": {
"back": {
"$ref": "/schemas#/2021-01/Printer.Image"
},
"codeline": {
"$ref": "/schemas#/2021-01/Printer.Image"
},
"front": {
"$ref": "/schemas#/2021-01/Printer.Image"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"Printer.ResetCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mediaControl": {
"enum": [
"eject",
"retract",
"expel"
],
"type": "string"
},
"retractBinNumber": {
"minimum": 1,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.ResetCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"shutterFail",
"retractBinFull",
"mediaJammed",
"paperJammed"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.ResetCountCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"binNumber": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.RetractBinStatusEvent": {
"1.0": {
"properties": {
"binNumber": {
"minimum": 1,
"type": "integer"
},
"state": {
"enum": [
"inserted",
"removed"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.RetractBinThresholdEvent": {
"1.0": {
"properties": {
"binNumber": {
"minimum": 1,
"type": "integer"
},
"state": {
"enum": [
"ok",
"full",
"high"
],
"type": "string"
}
},
"type": "object"
}
},
"Printer.RetractMediaCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"binNumber": {
"minimum": 1,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"Printer.RetractMediaCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"binNumber": {
"minimum": 1,
"type": "integer"
},
"errorCode": {
"enum": [
"noMediaPresent",
"retractBinFull",
"mediaJammed"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Printer.SetBlackMarkModeCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"blackMarkMode": {
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"Printer.SupplyReplenishCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"aux": {
"type": "boolean"
},
"aux2": {
"type": "boolean"
},
"ink": {
"type": "boolean"
},
"lamp": {
"type": "boolean"
},
"lower": {
"type": "boolean"
},
"toner": {
"type": "boolean"
},
"upper": {
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"Printer.TonerThresholdEvent": {
"1.0": {
"properties": {
"state": {
"enum": [
"full",
"low",
"out"
],
"type": "string"
}
},
"type": "object"
}
},
"ServicePublisher.GetServicesCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/ServicePublisher.Services"
}
],
"type": "object"
}
},
"ServicePublisher.ServiceDetailEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/ServicePublisher.Services"
}
},
"Storage.GetStorageCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/Storage.Storage"
}
]
}
},
"Storage.SetStorageCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/Storage.SetStorage"
}
],
"type": "object"
}
},
"Storage.SetStorageCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"invalidUnit",
"noExchangeActive",
"storageUnitError"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Storage.StartExchangeCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"storageUnitError",
"exchangeActive",
"transactionActive"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"Storage.StorageChangedEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Storage.SingleStorageUnit"
}
},
"Storage.StorageErrorEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Storage.Error"
}
},
"Storage.StorageThresholdEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/Storage.SingleStorageUnit"
}
},
"TextTerminal.BeepCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties",
"properties": {
"beep": {
"properties": {
"beepType": {
"enum": [
"keyPress",
"exclamation",
"warning",
"error",
"critical"
],
"type": "string"
},
"continuous": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"TextTerminal.ClearScreenCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"height": {
"minimum": 1,
"type": "integer"
},
"positionX": {
"minimum": 0,
"type": "integer"
},
"positionY": {
"minimum": 0,
"type": "integer"
},
"width": {
"minimum": 1,
"type": "integer"
}
},
"required": [
"positionX",
"positionY",
"width",
"height"
]
}
],
"type": "object"
}
},
"TextTerminal.DefineKeysCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"activeCommandKeys": {
"$ref": "/schemas#/2021-01/TextTerminal.ActiveCommandKeys"
},
"activeKeys": {
"type": "string"
}
},
"required": [
"activeKeys"
]
}
],
"type": "object"
}
},
"TextTerminal.DefineKeysCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyInvalid",
"keyNotSupported",
"noActiveKeys"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.FieldErrorEvent": {
"1.0": {
"properties": {
"failure": {
"enum": [
"required",
"staticOverwrite",
"overflow",
"notFound",
"notRead",
"notWrite",
"typeNotSupported",
"charSetForm"
],
"type": "string"
},
"fieldName": {
"type": "string"
},
"formName": {
"type": "string"
}
},
"required": [
"formName",
"fieldName",
"failure"
],
"type": "object"
}
},
"TextTerminal.FieldWarningEvent": {
"1.0": {}
},
"TextTerminal.FormLoadedEvent": {
"1.0": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
}
},
"TextTerminal.GetFormListCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"formList": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
],
"type": "object"
}
},
"TextTerminal.GetKeyDetailCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"properties": {
"commandKeys": {
"items": {
"$ref": "/schemas#/2021-01/TextTerminal.AllCommandKeysEnum"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"keys": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.GetQueryFieldCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"fieldName": {
"type": "string"
},
"formName": {
"type": "string"
}
},
"required": [
"formName"
]
}
],
"type": "object"
}
},
"TextTerminal.GetQueryFieldCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"formInvalid",
"fieldNotFound",
"fieldInvalid"
],
"type": "string"
},
"fields": {
"additionalProperties": {
"$ref": "/schemas#/2021-01/TextTerminal.FieldDetails"
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"TextTerminal.GetQueryFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"formName": {
"type": "string"
}
},
"required": [
"formName"
]
}
],
"type": "object"
}
},
"TextTerminal.GetQueryFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"formInvalid"
],
"type": "string"
},
"fields": {
"items": {
"type": "string"
},
"type": "array"
},
"formName": {
"type": "string"
},
"height": {
"minimum": 0,
"type": "integer"
},
"versionMajor": {
"minimum": 0,
"type": "integer"
},
"versionMinor": {
"minimum": 0,
"type": "integer"
},
"width": {
"minimum": 0,
"type": "integer"
}
}
}
],
"type": "object"
}
},
"TextTerminal.KeyEvent": {
"1.0": {
"properties": {
"commandKey": {
"$ref": "/schemas#/2021-01/TextTerminal.AllCommandKeysEnum"
},
"key": {
"type": "string"
}
},
"type": "object"
}
},
"TextTerminal.LoadFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"definition": {
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
}
}
}
],
"type": "object"
}
},
"TextTerminal.LoadFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formInvalid",
"definitionExists"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.ReadCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"activeCommandKeys": {
"$ref": "/schemas#/2021-01/TextTerminal.ActiveCommandKeys"
},
"activeKeys": {
"type": "string"
},
"autoEnd": {
"default": true,
"type": "boolean"
},
"echoAttr": {
"properties": {
"flash": {
"type": "boolean"
},
"inverted": {
"type": "boolean"
},
"underline": {
"type": "boolean"
}
},
"type": "object"
},
"echoMode": {
"default": "text",
"enum": [
"text",
"invisible",
"password"
],
"type": "string"
},
"flush": {
"type": "boolean"
},
"mode": {
"$ref": "/schemas#/2021-01/TextTerminal.Modes"
},
"numOfChars": {
"minimum": 0,
"type": "integer"
},
"posX": {
"minimum": 0,
"type": "integer"
},
"posY": {
"minimum": 0,
"type": "integer"
},
"visible": {
"default": true,
"type": "boolean"
}
},
"required": [
"numOfChars",
"mode",
"posX",
"posY",
"flush",
"activeKeys"
]
}
],
"type": "object"
}
},
"TextTerminal.ReadCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"keyInvalid",
"keyNotSupported",
"noActiveKeys"
],
"type": "string"
},
"input": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.ReadFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"fields": {
"items": {
"type": "string"
},
"type": "array"
},
"formName": {
"type": "string"
}
},
"required": [
"formName"
]
}
],
"type": "object"
}
},
"TextTerminal.ReadFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"formInvalid",
"fieldSpecFailure",
"keyCanceled",
"fieldError"
],
"type": "string"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
}
],
"type": "object"
}
},
"TextTerminal.SetResolutionCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"resolution": {
"$ref": "/schemas#/2021-01/TextTerminal.Resolution"
}
},
"required": [
"resolution"
]
}
],
"type": "object"
}
},
"TextTerminal.SetResolutionCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"resolutionNotSupported"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.WriteCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"mode": {
"$ref": "/schemas#/2021-01/TextTerminal.Modes"
},
"posX": {
"minimum": 0,
"type": "integer"
},
"posY": {
"minimum": 0,
"type": "integer"
},
"text": {
"type": "string"
},
"textAttr": {
"properties": {
"flash": {
"default": false,
"type": "boolean"
},
"inverted": {
"default": false,
"type": "boolean"
},
"underline": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"mode",
"posX",
"posY",
"textAttr",
"text"
]
}
],
"type": "object"
}
},
"TextTerminal.WriteCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"characterSetsData"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"TextTerminal.WriteFormCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"clearScreen": {
"default": true,
"type": "boolean"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"formName": {
"type": "string"
}
},
"required": [
"formName",
"clearScreen",
"fields"
]
}
],
"type": "object"
}
},
"TextTerminal.WriteFormCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionPropertiesWithErrorCode"
},
{
"properties": {
"errorCode": {
"enum": [
"formNotFound",
"formInvalid",
"mediaOverflow",
"fieldSpecFailure",
"characterSetsData",
"fieldError"
],
"type": "string"
}
}
}
],
"type": "object"
}
},
"VendorApplication.GetActiveInterfaceCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
},
{
"$ref": "/schemas#/2021-01/VendorApplication.ActiveInterface"
}
],
"type": "object"
}
},
"VendorApplication.InterfaceChangedEvent": {
"1.0": {
"$ref": "/schemas#/2021-01/VendorApplication.ActiveInterface"
}
},
"VendorApplication.SetActiveInterfaceCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"$ref": "/schemas#/2021-01/VendorApplication.ActiveInterface"
}
],
"type": "object"
}
},
"VendorApplication.StartLocalApplicationCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"accessLevel": {
"enum": [
"basic",
"intermediate",
"full"
],
"type": "string"
},
"appName": {
"type": "string"
}
}
}
],
"type": "object"
}
},
"VendorApplication.VendorAppExitedEvent": {
"1.0": {}
},
"VendorMode.EnterModeRequestCommand": {
"1.0": {
"$ref": "/schemas#/2021-01/Common.CommandProperties"
}
},
"VendorMode.EnterModeRequestCompletion": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CompletionProperties"
}
],
"type": "object"
}
},
"VendorMode.EnterModeRequestEvent": {
"1.0": {}
},
"VendorMode.ExitModeRequestEvent": {
"1.0": {}
},
"VendorMode.ModeEnteredEvent": {
"1.0": {}
},
"VendorMode.ModeExitedEvent": {
"1.0": {
"properties": {
"connectedApplications": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"VendorMode.RegisterCommand": {
"1.0": {
"allOf": [
{
"$ref": "/schemas#/2021-01/Common.CommandProperties"
},
{
"properties": {
"appName": {
"type": "string"
}
}
}
],
"type": "object"
}
}
},
"schemas": {
"$id": "/schemas",
"2021-01": {
"Auxiliaries.AmbientLightSensorState": {
"enum": [
"notAvailable",
"veryDark",
"dark",
"mediumLight",
"light",
"veryLight"
],
"type": "string"
},
"Auxiliaries.AudibleAlarmState": {
"enum": [
"notAvailable",
"on",
"off"
],
"type": "string"
},
"Auxiliaries.AudioState": {
"properties": {
"rate": {
"enum": [
"on",
"off"
],
"type": "string"
},
"signal": {
"enum": [
"keypress",
"exclamation",
"warning",
"error",
"critical"
],
"type": "string"
}
},
"type": "object"
},
"Auxiliaries.AutoStartUpTime": {
"properties": {
"mode": {
"enum": [
"clear",
"specific",
"daily",
"weekly"
],
"type": "string"
},
"startTime": {
"$ref": "#/2021-01/Auxiliaries.SystemTime"
}
},
"type": "object"
},
"Auxiliaries.BootSwitchSensorState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.CabinetFrontDoorState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"bolted",
"tampered"
],
"type": "string"
},
"Auxiliaries.CabinetLeftDoorState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"bolted",
"tampered"
],
"type": "string"
},
"Auxiliaries.CabinetRearDoorState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"bolted",
"tampered"
],
"type": "string"
},
"Auxiliaries.CabinetRightDoorState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"bolted",
"tampered"
],
"type": "string"
},
"Auxiliaries.Capabilities": {
"properties": {
"ambientLightSensor": {
"default": false,
"type": "boolean"
},
"audibleAlarm": {
"default": false,
"type": "boolean"
},
"audio": {
"default": false,
"type": "boolean"
},
"autoStartupMode": {
"properties": {
"daily": {
"default": false,
"type": "boolean"
},
"specific": {
"default": false,
"type": "boolean"
},
"weekly": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"bootSwitchSensor": {
"default": false,
"type": "boolean"
},
"consumerDisplayBacklight": {
"default": false,
"type": "boolean"
},
"displaySensor": {
"default": false,
"type": "boolean"
},
"enhancedAudioControl": {
"properties": {
"headsetDetection": {
"default": false,
"type": "boolean"
},
"modeControllable": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"enhancedAudioSensor": {
"properties": {
"auto": {
"default": false,
"type": "boolean"
},
"bidirectional": {
"default": false,
"type": "boolean"
},
"manual": {
"default": false,
"type": "boolean"
},
"semiAuto": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"enhancedMicrophoneControlState": {
"properties": {
"headsetDetection": {
"default": false,
"type": "boolean"
},
"modeControllable": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"fasciaMicrophoneSensor": {
"default": false,
"type": "boolean"
},
"frontCabinet": {
"$ref": "#/2021-01/Auxiliaries.DoorCaps"
},
"handsetSensor": {
"properties": {
"auto": {
"default": false,
"type": "boolean"
},
"manual": {
"default": false,
"type": "boolean"
},
"microphone": {
"default": false,
"type": "boolean"
},
"semiAuto": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"headsetMicrophoneSensor": {
"properties": {
"auto": {
"default": false,
"type": "boolean"
},
"manual": {
"default": false,
"type": "boolean"
},
"semiAuto": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"heatSensor": {
"default": false,
"type": "boolean"
},
"heating": {
"default": false,
"type": "boolean"
},
"internalTamperSensor": {
"default": false,
"type": "boolean"
},
"leftCabinet": {
"$ref": "#/2021-01/Auxiliaries.DoorCaps"
},
"microphoneVolume": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"openCloseIndicator": {
"default": false,
"type": "boolean"
},
"operatorCallButtonSensor": {
"default": false,
"type": "boolean"
},
"operatorSwitch": {
"properties": {
"maintenance": {
"default": false,
"type": "boolean"
},
"run": {
"default": false,
"type": "boolean"
},
"supervisor": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"proximitySensor": {
"default": false,
"type": "boolean"
},
"rearCabinet": {
"$ref": "#/2021-01/Auxiliaries.DoorCaps"
},
"rightCabinet": {
"$ref": "#/2021-01/Auxiliaries.DoorCaps"
},
"safeDoor": {
"$ref": "#/2021-01/Auxiliaries.DoorCaps"
},
"seismicSensor": {
"default": false,
"type": "boolean"
},
"signageDisplay": {
"default": false,
"type": "boolean"
},
"tamperSensor": {
"default": false,
"type": "boolean"
},
"ups": {
"properties": {
"engaged": {
"default": false,
"type": "boolean"
},
"low": {
"default": false,
"type": "boolean"
},
"powering": {
"default": false,
"type": "boolean"
},
"recovered": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"vandalShield": {
"properties": {
"closed": {
"default": false,
"type": "boolean"
},
"keyboard": {
"default": false,
"type": "boolean"
},
"locked": {
"default": false,
"type": "boolean"
},
"open": {
"default": false,
"type": "boolean"
},
"service": {
"default": false,
"type": "boolean"
},
"tampered": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"volume": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"Auxiliaries.ConsumerDisplayBacklightState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.DisplaySensorState": {
"enum": [
"notAvailable",
"off",
"on",
"displayError"
],
"type": "string"
},
"Auxiliaries.DoorCaps": {
"properties": {
"bolted": {
"default": false,
"type": "boolean"
},
"closed": {
"default": false,
"type": "boolean"
},
"locked": {
"default": false,
"type": "boolean"
},
"open": {
"default": false,
"type": "boolean"
},
"tampered": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"Auxiliaries.EnhancedAudioControlState": {
"enum": [
"notAvailable",
"publicAudioManual",
"publicAudioAuto",
"publicAudioSemiAuto",
"privateAudioManual",
"privateAudioAuto",
"privateAudioSemiAuto"
],
"type": "string"
},
"Auxiliaries.EnhancedAudioSensorState": {
"enum": [
"notAvailable",
"present",
"notPresent"
],
"type": "string"
},
"Auxiliaries.EnhancedMicrophoneControlState": {
"enum": [
"notAvailable",
"publicAudioManual",
"publicAudioAuto",
"publicAudioSemiAuto",
"privateAudioManual",
"privateAudioAuto",
"privateAudioSemiAuto"
],
"type": "string"
},
"Auxiliaries.FasciaMicrophoneSensorState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.HandsetSensorState": {
"enum": [
"notAvailable",
"onTheHook",
"offTheHook"
],
"type": "string"
},
"Auxiliaries.HeadsetMicrophoneSensorState": {
"enum": [
"notAvailable",
"present",
"notPresent"
],
"type": "string"
},
"Auxiliaries.HeatSensorState": {
"enum": [
"notAvailable",
"on",
"off"
],
"type": "string"
},
"Auxiliaries.HeatingState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.InternalTamperSensorState": {
"enum": [
"notAvailable",
"on",
"off"
],
"type": "string"
},
"Auxiliaries.MicrophoneVolumeState": {
"properties": {
"available": {
"default": false,
"type": "boolean"
},
"volumeLevel": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"Auxiliaries.OpenClosedIndicatorState": {
"enum": [
"notAvailable",
"closed",
"open"
],
"type": "string"
},
"Auxiliaries.OperatorCallButtonSensorState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.OperatorSwitchState": {
"enum": [
"notAvailable",
"run",
"maintenance",
"supervisor"
],
"type": "string"
},
"Auxiliaries.ProximitySensorState": {
"enum": [
"notAvailable",
"present",
"notPresent"
],
"type": "string"
},
"Auxiliaries.Register": {
"additionalProperties": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"properties": {
"ambientLightSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"audibleAlarm": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"audioIndicator": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"bootSwitch": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"cabinetDoor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"cabinetFront": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"cabinetLeft": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"cabinetRear": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"cabinetRight": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"consumerDisplay": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"consumerDisplayBacklight": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"enhancedAudio": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"enhancedAudioControl": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"enhancedMicrophoneControl": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"fasciaLight": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"handsetSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"headsetMicrophone": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"heatSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"heatingIndicator": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"internalTamperSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"microphoneVolume": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"openCloseIndicator": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"operatorCallButton": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"operatorSwitch": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"proximitySensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"remoteStatusMonitor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"safeDoor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"seismicSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"signageDisplay": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"tamperSensor": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"ups": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"vandalShield": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
},
"volumeControl": {
"$ref": "#/2021-01/Auxiliaries.changeStateEnum"
}
},
"type": "object"
},
"Auxiliaries.SafeDoorState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"bolted",
"tampered"
],
"type": "string"
},
"Auxiliaries.SeismicSensorState": {
"enum": [
"notAvailable",
"on",
"off"
],
"type": "string"
},
"Auxiliaries.SetAuxiliaries": {
"properties": {
"audibleAlarm": {
"enum": [
"off",
"on"
],
"type": "string"
},
"audio": {
"properties": {
"rate": {
"enum": [
"on",
"off"
],
"type": "string"
},
"signal": {
"enum": [
"keypress",
"exclamation",
"warning",
"error",
"critical"
],
"type": "string"
}
},
"type": "object"
},
"displayBackLight": {
"enum": [
"on",
"off"
],
"type": "string"
},
"enhancedAudioControl": {
"enum": [
"publicAudioManual",
"publicAudioAuto",
"publicAudioSemiAuto",
"privateAudioManual",
"privateAudioAuto",
"privateAudioSemiAuto"
],
"type": "string"
},
"enhancedMicrophoneControl": {
"enum": [
"publicAudioManual",
"publicAudioAuto",
"publicAudioSemiAuto",
"privateAudioManual",
"privateAudioAuto",
"privateAudioSemiAuto"
],
"type": "string"
},
"fasciaLight": {
"enum": [
"off",
"on"
],
"type": "string"
},
"frontCabinetDoors": {
"enum": [
"bolt",
"unbolt"
],
"type": "string"
},
"heating": {
"enum": [
"on",
"off"
],
"type": "string"
},
"leftCabinetDoors": {
"enum": [
"bolt",
"unbolt"
],
"type": "string"
},
"microphoneVolume": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"openClose": {
"enum": [
"closed",
"open"
],
"type": "string"
},
"rearCabinetDoors": {
"enum": [
"bolt",
"unbolt"
],
"type": "string"
},
"rightCabinetDoors": {
"enum": [
"bolt",
"unbolt"
],
"type": "string"
},
"safeDoor": {
"enum": [
"bolt",
"unbolt"
],
"type": "string"
},
"signageDisplay": {
"enum": [
"on",
"off"
],
"type": "string"
},
"ups": {
"enum": [
"engage",
"disengage"
],
"type": "string"
},
"vandalShield": {
"enum": [
"closed",
"open",
"service",
"keyboard"
],
"type": "string"
},
"volume": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"Auxiliaries.SignageDisplayState": {
"enum": [
"notAvailable",
"off",
"on"
],
"type": "string"
},
"Auxiliaries.Status": {
"properties": {
"UPS": {
"$ref": "#/2021-01/Auxiliaries.UPSState"
},
"ambientLightSensor": {
"$ref": "#/2021-01/Auxiliaries.AmbientLightSensorState"
},
"audibleAlarm": {
"$ref": "#/2021-01/Auxiliaries.AudibleAlarmState"
},
"audio": {
"$ref": "#/2021-01/Auxiliaries.AudioState"
},
"bootSwitchSensor": {
"$ref": "#/2021-01/Auxiliaries.BootSwitchSensorState"
},
"cabinetFrontDoor": {
"$ref": "#/2021-01/Auxiliaries.CabinetFrontDoorState"
},
"cabinetLeftDoor": {
"$ref": "#/2021-01/Auxiliaries.CabinetLeftDoorState"
},
"cabinetRearDoor": {
"$ref": "#/2021-01/Auxiliaries.CabinetRearDoorState"
},
"cabinetRightDoor": {
"$ref": "#/2021-01/Auxiliaries.CabinetRightDoorState"
},
"consumerDisplayBacklight": {
"$ref": "#/2021-01/Auxiliaries.ConsumerDisplayBacklightState"
},
"displaySensor": {
"$ref": "#/2021-01/Auxiliaries.DisplaySensorState"
},
"enhancedAudioControl": {
"$ref": "#/2021-01/Auxiliaries.EnhancedAudioControlState"
},
"enhancedAudioSensor": {
"$ref": "#/2021-01/Auxiliaries.EnhancedAudioSensorState"
},
"enhancedMicrophoneControl": {
"$ref": "#/2021-01/Auxiliaries.EnhancedMicrophoneControlState"
},
"fasciaMicrophoneSensor": {
"$ref": "#/2021-01/Auxiliaries.FasciaMicrophoneSensorState"
},
"handsetSensor": {
"$ref": "#/2021-01/Auxiliaries.HandsetSensorState"
},
"headsetMicrophoneSensor": {
"$ref": "#/2021-01/Auxiliaries.HeadsetMicrophoneSensorState"
},
"heatSensor": {
"$ref": "#/2021-01/Auxiliaries.HeatSensorState"
},
"heating": {
"$ref": "#/2021-01/Auxiliaries.HeatingState"
},
"internalTamperSensor": {
"$ref": "#/2021-01/Auxiliaries.InternalTamperSensorState"
},
"microphoneVolume": {
"$ref": "#/2021-01/Auxiliaries.MicrophoneVolumeState"
},
"openClosedIndicator": {
"$ref": "#/2021-01/Auxiliaries.OpenClosedIndicatorState"
},
"operatorCallButtonSensor": {
"$ref": "#/2021-01/Auxiliaries.OperatorCallButtonSensorState"
},
"operatorSwitch": {
"$ref": "#/2021-01/Auxiliaries.OperatorSwitchState"
},
"proximitySensor": {
"$ref": "#/2021-01/Auxiliaries.ProximitySensorState"
},
"safeDoor": {
"$ref": "#/2021-01/Auxiliaries.SafeDoorState"
},
"seismicSensor": {
"$ref": "#/2021-01/Auxiliaries.SeismicSensorState"
},
"signageDisplay": {
"$ref": "#/2021-01/Auxiliaries.SignageDisplayState"
},
"tamperSensor": {
"$ref": "#/2021-01/Auxiliaries.TamperSensorState"
},
"vandalShield": {
"$ref": "#/2021-01/Auxiliaries.VandalShieldState"
},
"volume": {
"$ref": "#/2021-01/Auxiliaries.VolumeState"
}
},
"type": "object"
},
"Auxiliaries.SystemTime": {
"properties": {
"day": {
"maximum": 31,
"minimum": 1,
"type": "integer"
},
"dayOfWeek": {
"enum": [
"Saturday",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"type": "string"
},
"hour": {
"maximum": 23,
"minimum": 0,
"type": "integer"
},
"minute": {
"maximum": 59,
"minimum": 0,
"type": "integer"
},
"month": {
"maximum": 12,
"minimum": 1,
"type": "integer"
},
"year": {
"maximum": 30827,
"minimum": 1601,
"type": "integer"
}
},
"type": "object"
},
"Auxiliaries.TamperSensorState": {
"enum": [
"notAvailable",
"on",
"off"
],
"type": "string"
},
"Auxiliaries.UPSState": {
"properties": {
"engaged": {
"default": false,
"type": "boolean"
},
"low": {
"default": false,
"type": "boolean"
},
"powering": {
"default": false,
"type": "boolean"
},
"recovered": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"Auxiliaries.VandalShieldState": {
"enum": [
"notAvailable",
"closed",
"open",
"locked",
"service",
"keyboard",
"partiallyOpen",
"jammed",
"tampered"
],
"type": "string"
},
"Auxiliaries.VolumeState": {
"properties": {
"volumeLevel": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"Auxiliaries.changeStateEnum": {
"enum": [
"register",
"deregister"
],
"type": "string"
},
"BarcodeReader.Capabilities": {
"properties": {
"canFilterSymbologies": {
"type": "boolean"
},
"symbologies": {
"$ref": "#/2021-01/BarcodeReader.SymbologiesProperties",
"type": "object"
}
},
"type": "object"
},
"BarcodeReader.Status": {
"properties": {
"scanner": {
"enum": [
"on",
"off",
"inoperative",
"unknown"
],
"type": "string"
}
},
"type": "object"
},
"BarcodeReader.SymbologiesProperties": {
"properties": {
"australianPost": {
"type": "boolean"
},
"aztec": {
"type": "boolean"
},
"canadianPost": {
"type": "boolean"
},
"channelCode": {
"type": "boolean"
},
"chinesePost": {
"type": "boolean"
},
"codabar": {
"type": "boolean"
},
"codablockF": {
"type": "boolean"
},
"code11": {
"type": "boolean"
},
"code128": {
"type": "boolean"
},
"code16K": {
"type": "boolean"
},
"code39": {
"type": "boolean"
},
"code49": {
"type": "boolean"
},
"code93": {
"type": "boolean"
},
"codeOne": {
"type": "boolean"
},
"compositeCodeA": {
"type": "boolean"
},
"compositeCodeB": {
"type": "boolean"
},
"compositeCodeC": {
"type": "boolean"
},
"dataMatrix": {
"type": "boolean"
},
"ean128": {
"type": "boolean"
},
"ean13": {
"type": "boolean"
},
"ean13_2": {
"type": "boolean"
},
"ean13_5": {
"type": "boolean"
},
"ean8": {
"type": "boolean"
},
"ean8_2": {
"type": "boolean"
},
"ean8_5": {
"type": "boolean"
},
"itf": {
"type": "boolean"
},
"jan13": {
"type": "boolean"
},
"japanesePost": {
"type": "boolean"
},
"koreanPost": {
"type": "boolean"
},
"maxiCode": {
"type": "boolean"
},
"microPdf417": {
"type": "boolean"
},
"msi": {
"type": "boolean"
},
"netherlandsPost": {
"type": "boolean"
},
"pdf417": {
"type": "boolean"
},
"planet": {
"type": "boolean"
},
"plessey": {
"type": "boolean"
},
"posiCodeA": {
"type": "boolean"
},
"posiCodeB": {
"type": "boolean"
},
"postnet": {
"type": "boolean"
},
"qrCode": {
"type": "boolean"
},
"rss": {
"type": "boolean"
},
"rssExpanded": {
"type": "boolean"
},
"rssRestricted": {
"type": "boolean"
},
"std2Of5": {
"type": "boolean"
},
"std2Of5Iata": {
"type": "boolean"
},
"telepenAim": {
"type": "boolean"
},
"telepenOriginal": {
"type": "boolean"
},
"triopticCode39": {
"type": "boolean"
},
"ukPost": {
"type": "boolean"
},
"upcA": {
"type": "boolean"
},
"upcA_2": {
"type": "boolean"
},
"upcA_5": {
"type": "boolean"
},
"upcE0": {
"type": "boolean"
},
"upcE0_2": {
"type": "boolean"
},
"upcE0_5": {
"type": "boolean"
},
"upcE1": {
"type": "boolean"
},
"upcE1_2": {
"type": "boolean"
},
"upcE1_5": {
"type": "boolean"
}
}
},
"Biometric.BioData": {
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"type": {
"$ref": "#/2021-01/Biometric.DataType"
}
},
"required": [
"type",
"data"
],
"type": "object"
},
"Biometric.Capabilities": {
"properties": {
"clearData": {
"properties": {
"importedData": {
"type": "boolean"
},
"scannedData": {
"type": "boolean"
},
"setMatchedData": {
"type": "boolean"
}
},
"type": "object"
},
"compareModes": {
"properties": {
"identity": {
"type": "boolean"
},
"verify": {
"type": "boolean"
}
},
"type": "object"
},
"dataFormats": {
"properties": {
"ansiFid": {
"type": "boolean"
},
"ansiFmd": {
"type": "boolean"
},
"isoFid": {
"type": "boolean"
},
"isoFmd": {
"type": "boolean"
},
"qso": {
"type": "boolean"
},
"reservedRaw1": {
"type": "boolean"
},
"reservedRaw2": {
"type": "boolean"
},
"reservedRaw3": {
"type": "boolean"
},
"reservedTemplate1": {
"type": "boolean"
},
"reservedTemplate2": {
"type": "boolean"
},
"reservedTemplate3": {
"type": "boolean"
},
"wso": {
"type": "boolean"
}
},
"type": "object"
},
"encryptionalAlgorithm": {
"properties": {
"cbc": {
"type": "boolean"
},
"cfb": {
"type": "boolean"
},
"ecb": {
"type": "boolean"
},
"rsa": {
"type": "boolean"
}
},
"type": "object"
},
"matchSupported": {
"enum": [
"storedMatch",
"combinedMatch"
],
"type": "string"
},
"maxCapture": {
"minimum": 0,
"type": "integer"
},
"persistenceModes": {
"properties": {
"clear": {
"type": "boolean"
},
"persist": {
"type": "boolean"
}
},
"type": "object"
},
"scanModes": {
"properties": {
"match": {
"type": "boolean"
},
"scan": {
"type": "boolean"
}
},
"type": "object"
},
"storage": {
"properties": {
"clear": {
"type": "boolean"
},
"secure": {
"type": "boolean"
}
},
"type": "object"
},
"templateStorage": {
"minimum": 0,
"type": "integer"
},
"type": {
"properties": {
"facialFeatures": {
"type": "boolean"
},
"fingerVein": {
"type": "boolean"
},
"fingerprint": {
"type": "boolean"
},
"handGeometry": {
"type": "boolean"
},
"iris": {
"type": "boolean"
},
"palmVein": {
"type": "boolean"
},
"retina": {
"type": "boolean"
},
"signature": {
"type": "boolean"
},
"thermalFace": {
"type": "boolean"
},
"thermalHand": {
"type": "boolean"
},
"voice": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"type",
"maxCapture",
"templateStorage",
"dataFormats",
"encryptionAlgorithms",
"storage",
"persistenceModes",
"matchSupported",
"scanModes",
"compareModes",
"clearData"
],
"type": "object"
},
"Biometric.ClearData": {
"enum": [
"scannedData",
"importedData",
"setMatchedData"
],
"type": "string"
},
"Biometric.DataType": {
"properties": {
"algorithm": {
"enum": [
"ecb",
"cbc",
"cfb",
"rsa"
],
"type": "string"
},
"format": {
"enum": [
"isoFid",
"isoFmd",
"ansiFid",
"ansiFmd",
"qso",
"wso",
"reservedRaw1",
"reservedTemplate1",
"reservedRaw2",
"reservedTemplate2",
"reservedRaw3",
"reservedTemplate3"
],
"type": "string"
},
"keyName": {
"type": "string"
}
},
"required": [
"format",
"algorithm"
],
"type": "object"
},
"Biometric.Match": {
"properties": {
"compareMode": {
"enum": [
"verify",
"identity"
],
"type": "string"
},
"identifier": {
"pattern": "^id[0-9A-Za-z]+$",
"type": "string"
},
"maximum": {
"minimum": 0,
"type": "integer"
},
"threshold": {
"maximum": 100,
"minimum": 0,
"type": "integer"
}
},
"required": [
"compareMode",
"identifier",
"maximum",
"threshold"
],
"type": "object"
},
"Biometric.Status": {
"properties": {
"capture": {
"type": "boolean"
},
"dataPersistence": {
"enum": [
"persist",
"clear"
],
"type": "string"
},
"remainingStorage": {
"minimum": 0,
"type": "integer"
},
"subject": {
"enum": [
"present",
"notPresent",
"unknown",
"notSupported"
],
"type": "string"
}
},
"required": [
"subject",
"capture",
"dataPersistence",
"remainingStorage"
]
},
"Biometric.Templates": {
"patternProperties": {
"^id[0-9A-Za-z]+$": {
"$ref": "#/2021-01/Biometric.DataType"
}
},
"type": "object"
},
"Camera.Available": {
"type": "boolean"
},
"Camera.CamerasState": {
"enum": [
"notSupported",
"ok",
"inop",
"unknown"
],
"type": "string"
},
"Camera.Capabilities": {
"properties": {
"camData": {
"properties": {
"autoAdd": {
"type": "boolean"
},
"manAdd": {
"type": "boolean"
}
},
"type": "object"
},
"cameras": {
"additionalProperties": {
"$ref": "#/2021-01/Camera.Available"
},
"properties": {
"exitSlot": {
"$ref": "#/2021-01/Camera.Available"
},
"person": {
"$ref": "#/2021-01/Camera.Available"
},
"room": {
"$ref": "#/2021-01/Camera.Available"
}
},
"type": "object"
},
"maxDataLength": {
"minimum": 0,
"type": "integer"
},
"maxPictures": {
"minimum": 0,
"type": "integer"
},
"pictureFile": {
"type": "boolean"
},
"type": {
"enum": [
"cam"
],
"type": "string"
}
},
"type": "object"
},
"Camera.MediaState": {
"enum": [
"ok",
"high",
"full",
"notSupported",
"unknown"
],
"type": "string"
},
"Camera.Status": {
"properties": {
"cameras": {
"additionalProperties": {
"$ref": "#/2021-01/Camera.CamerasState"
},
"properties": {
"exitSlot": {
"$ref": "#/2021-01/Camera.CamerasState"
},
"person": {
"$ref": "#/2021-01/Camera.CamerasState"
},
"room": {
"$ref": "#/2021-01/Camera.CamerasState"
}
},
"type": "object"
},
"media": {
"additionalProperties": {
"$ref": "#/2021-01/Camera.MediaState"
},
"properties": {
"exitSlot": {
"$ref": "#/2021-01/Camera.MediaState"
},
"person": {
"$ref": "#/2021-01/Camera.MediaState"
},
"room": {
"$ref": "#/2021-01/Camera.MediaState"
}
},
"type": "object"
},
"pictures": {
"additionalProperties": {
"minimum": 0,
"type": "integer"
},
"properties": {
"exitSlot": {
"minimum": 0,
"type": "integer"
},
"person": {
"minimum": 0,
"type": "integer"
},
"room": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"CardReader.Capabilities": {
"properties": {
"cardTakenSensor": {
"type": "boolean"
},
"chipPower": {
"properties": {
"cold": {
"type": "boolean"
},
"off": {
"type": "boolean"
},
"warm": {
"type": "boolean"
}
},
"type": "object"
},
"chipProtocols": {
"properties": {
"chipProtocolNotRequired": {
"type": "boolean"
},
"chipT0": {
"type": "boolean"
},
"chipT1": {
"type": "boolean"
},
"chipTypeAPart3": {
"type": "boolean"
},
"chipTypeAPart4": {
"type": "boolean"
},
"chipTypeB": {
"type": "boolean"
},
"chipTypeNFC": {
"type": "boolean"
}
},
"type": "object"
},
"fluxSensorProgrammable": {
"type": "boolean"
},
"memoryChipProtocols": {
"properties": {
"gpm896": {
"type": "boolean"
},
"siemens4442": {
"type": "boolean"
}
},
"type": "object"
},
"positions": {
"properties": {
"exit": {
"type": "boolean"
},
"transport": {
"type": "boolean"
}
},
"type": "object"
},
"powerOffOption": {
"enum": [
"notSupported",
"exit",
"retain",
"exitThenRetain",
"transport"
],
"type": "string"
},
"powerOnOption": {
"enum": [
"notSupported",
"exit",
"retain",
"exitThenRetain",
"transport"
],
"type": "string"
},
"readTracks": {
"properties": {
"backImage": {
"type": "boolean"
},
"ddi": {
"type": "boolean"
},
"frontImage": {
"type": "boolean"
},
"frontTrack1": {
"type": "boolean"
},
"track1": {
"type": "boolean"
},
"track1JIS": {
"type": "boolean"
},
"track2": {
"type": "boolean"
},
"track3": {
"type": "boolean"
},
"track3JIS": {
"type": "boolean"
},
"watermark": {
"type": "boolean"
}
},
"type": "object"
},
"readWriteAccessFromExit": {
"type": "boolean"
},
"securityType": {
"enum": [
"notSupported",
"mm",
"cim86"
],
"type": "string"
},
"type": {
"enum": [
"motor",
"swipe",
"dip",
"latchedDip",
"contactless",
"intelligentContactless",
"permanent"
],
"type": "string"
},
"writeMode": {
"properties": {
"auto": {
"type": "boolean"
},
"hico": {
"type": "boolean"
},
"loco": {
"type": "boolean"
}
},
"type": "object"
},
"writeTracks": {
"properties": {
"frontTrack1": {
"type": "boolean"
},
"track1": {
"type": "boolean"
},
"track1JIS": {
"type": "boolean"
},
"track2": {
"type": "boolean"
},
"track3": {
"type": "boolean"
},
"track3JIS": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"CardReader.CardData": {
"properties": {
"data": {
"$ref": "#/2021-01/CardReader.CardDataData"
},
"status": {
"$ref": "#/2021-01/CardReader.CardDataStatus"
}
},
"type": "object"
},
"CardReader.CardDataData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"CardReader.CardDataStatus": {
"enum": [
"ok",
"dataMissing",
"dataInvalid",
"dataTooLong",
"dataTooShort",
"dataSourceNotSupported",
"dataSourceMissing"
],
"type": "string"
},
"CardReader.EMVClessIssuerUpdateEMVClessTxOutputData": {
"properties": {
"clessOutcome": {
"properties": {
"alternateInterface": {
"enum": [
"contact",
"magneticStripe"
],
"type": "string"
},
"cardRemovalTimeout": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"cvm": {
"enum": [
"onlinePIN",
"confirmationCodeVerified",
"sign",
"noCVM",
"noCVMPreference"
],
"type": "string"
},
"discretionaryData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"fieldOffHoldTime": {
"minimum": 0,
"type": "integer"
},
"receipt": {
"type": "boolean"
},
"uiOutcome": {
"$ref": "#/2021-01/CardReader.EMVClessUI"
},
"uiRestart": {
"$ref": "#/2021-01/CardReader.EMVClessUI"
}
},
"type": "object"
},
"dataRead": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"txOutcome": {
"enum": [
"multipleCards",
"approve",
"decline",
"tryAgain",
"tryAnotherInterface"
],
"type": "string"
}
},
"type": "object"
},
"CardReader.EMVClessPerformTransactionEMVClessTxOutputData": {
"properties": {
"cardholderAction": {
"enum": [
"none",
"retap",
"holdCard"
],
"type": "string"
},
"clessOutcome": {
"properties": {
"alternateInterface": {
"enum": [
"contact",
"magneticStripe"
],
"type": "string"
},
"cardRemovalTimeout": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"cvm": {
"enum": [
"onlinePIN",
"confirmationCodeVerified",
"sign",
"noCVM",
"noCVMPreference"
],
"type": "string"
},
"discretionaryData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"fieldOffHoldTime": {
"minimum": 0,
"type": "integer"
},
"receipt": {
"type": "boolean"
},
"uiOutcome": {
"$ref": "#/2021-01/CardReader.EMVClessUI"
},
"uiRestart": {
"$ref": "#/2021-01/CardReader.EMVClessUI"
}
},
"type": "object"
},
"dataRead": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"txOutcome": {
"enum": [
"multipleCards",
"approve",
"decline",
"onlineRequest",
"onlineRequestCompletionRequired",
"tryAgain",
"tryAnotherInterface",
"endApplication",
"confirmationRequired"
],
"type": "string"
}
},
"type": "object"
},
"CardReader.EMVClessUI": {
"properties": {
"currencyCode": {
"pattern": "^[A-Z]{3}$",
"type": "string"
},
"holdTime": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"languagePreferenceData": {
"pattern": "^[a-z]{2}$",
"type": "string"
},
"messageId": {
"type": "integer"
},
"status": {
"enum": [
"notReady",
"idle",
"readyToRead",
"processing",
"cardReadOk",
"processingError"
],
"type": "string"
},
"value": {
"type": "string"
},
"valueQualifier": {
"enum": [
"amount",
"balance"
],
"type": "string"
}
},
"type": "object"
},
"CardReader.Status": {
"properties": {
"backImageModule": {
"enum": [
"ok",
"inoperable",
"unknown",
"notSupported"
],
"type": "string"
},
"chipModule": {
"enum": [
"ok",
"inoperable",
"unknown",
"notSupported"
],
"type": "string"
},
"chipPower": {
"enum": [
"notSupported",
"unknown",
"online",
"busy",
"poweredOff",
"noDevice",
"hardwareError",
"noCard"
],
"type": "string"
},
"frontImageModule": {
"enum": [
"ok",
"inoperable",
"unknown",
"notSupported"
],
"type": "string"
},
"magWriteModule": {
"enum": [
"ok",
"inoperable",
"unknown",
"notSupported"
],
"type": "string"
},
"media": {
"enum": [
"notSupported",
"unknown",
"present",
"notPresent",
"jammed",
"entering",
"latched"
],
"type": "string"
},
"security": {
"enum": [
"notSupported",
"notReady",
"open"
],
"type": "string"
}
},
"type": "object"
},
"CardReader.Storage": {
"properties": {
"capabilities": {
"$ref": "#/2021-01/CardReader.StorageCapabilities"
},
"configuration": {
"$ref": "#/2021-01/CardReader.StorageConfiguration"
},
"status": {
"$ref": "#/2021-01/CardReader.StorageStatus"
}
},
"type": "object"
},
"CardReader.StorageCapabilities": {
"properties": {
"hardwareSensors": {
"default": false,
"type": "boolean"
},
"type": {
"enum": [
"retain",
"dispense",
"park"
],
"type": "string"
}
},
"type": "object"
},
"CardReader.StorageConfiguration": {
"properties": {
"cardID": {
"type": "string"
},
"threshold": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CardReader.StorageSet": {
"properties": {
"configuration": {
"$ref": "#/2021-01/CardReader.StorageConfiguration"
},
"status": {
"$ref": "#/2021-01/CardReader.StorageStatusSet"
}
},
"type": "object"
},
"CardReader.StorageStatus": {
"properties": {
"count": {
"minimum": 0,
"type": "integer"
},
"initialCount": {
"minimum": 0,
"type": "integer"
},
"replenishmentStatus": {
"$ref": "#/2021-01/Storage.ReplenishmentStatusEnum"
},
"retainCount": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CardReader.StorageStatusSet": {
"properties": {
"initialCount": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CashAcceptor.Capabilities": {
"properties": {
"cashInLimit": {
"properties": {
"byAmount": {
"type": "boolean"
},
"byTotalItems": {
"type": "boolean"
}
},
"type": "object"
},
"countActions": {
"properties": {
"all": {
"type": "boolean"
},
"individual": {
"type": "boolean"
}
},
"type": "object"
},
"counterfeitAction": {
"enum": [
"none",
"level2",
"level23"
],
"type": "string"
},
"intermediateStacker": {
"minimum": 0,
"type": "integer"
},
"itemsInsertedSensor": {
"type": "boolean"
},
"itemsTakenSensor": {
"type": "boolean"
},
"maxCashInItems": {
"minimum": 1,
"type": "integer"
},
"positions": {
"properties": {
"inBottom": {
"type": "boolean"
},
"inCenter": {
"type": "boolean"
},
"inFront": {
"type": "boolean"
},
"inLeft": {
"type": "boolean"
},
"inRear": {
"type": "boolean"
},
"inRight": {
"type": "boolean"
},
"inTop": {
"type": "boolean"
},
"outBottom": {
"type": "boolean"
},
"outCenter": {
"type": "boolean"
},
"outFront": {
"type": "boolean"
},
"outLeft": {
"type": "boolean"
},
"outRear": {
"type": "boolean"
},
"outRight": {
"type": "boolean"
},
"outTop": {
"type": "boolean"
}
},
"type": "object"
},
"retractAreas": {
"properties": {
"billCassette": {
"type": "boolean"
},
"cashIn": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
},
"stacker": {
"type": "boolean"
},
"transport": {
"type": "boolean"
}
},
"type": "object"
},
"retractStackerActions": {
"properties": {
"billCassette": {
"type": "boolean"
},
"cashIn": {
"type": "boolean"
},
"present": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
}
},
"type": "object"
},
"retractTransportActions": {
"properties": {
"billCassette": {
"type": "boolean"
},
"cashIn": {
"type": "boolean"
},
"present": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
}
},
"type": "object"
},
"shutter": {
"type": "boolean"
},
"shutterControl": {
"type": "boolean"
},
"type": {
"enum": [
"tellerBill",
"selfServiceBill",
"tellerCoin",
"selfServiceCoin"
],
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.CashInStart": {
"properties": {
"amountLimit": {
"items": {
"properties": {
"currency": {
"$ref": "#/2021-01/CashManagement.Currency"
},
"value": {
"$ref": "#/2021-01/CashManagement.Value",
"default": 0
}
},
"type": "object"
},
"type": "array"
},
"inputPosition": {
"$ref": "#/2021-01/CashManagement.InputPosition"
},
"outputPosition": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"tellerID": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"totalItemsLimit": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"useRecycleUnits": {
"default": true,
"type": "boolean"
}
},
"type": "object"
},
"CashAcceptor.CashInStatus": {
"properties": {
"noteNumberList": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"numOfRefused": {
"minimum": 0,
"type": "integer"
},
"status": {
"enum": [
"ok",
"rollback",
"active",
"retract",
"unknown",
"reset"
],
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.CompareResult": {
"properties": {
"signaturesIndex": {
"items": {
"$ref": "#/2021-01/CashAcceptor.SignaturesIndex"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.CompareSignature": {
"properties": {
"referenceSignatures": {
"items": {
"$ref": "#/2021-01/CashManagement.Signature"
},
"type": "array"
},
"signatures": {
"items": {
"$ref": "#/2021-01/CashManagement.Signature"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.ConfigureNoteReader": {
"properties": {
"loadAlways": {
"type": "boolean"
}
},
"type": "object"
},
"CashAcceptor.ConfigureNoteReaderOut": {
"properties": {
"rebootNecessary": {
"type": "boolean"
}
},
"type": "object"
},
"CashAcceptor.Count": {
"properties": {
"units": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.DepInfo": {
"properties": {
"cashUnitTarget": {
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.DepInfoRes": {
"properties": {
"depleteSources": {
"items": {
"$ref": "#/2021-01/CashAcceptor.DepInfoSource"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.DepInfoSource": {
"properties": {
"cashUnitSource": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.DepRes": {
"properties": {
"depleteSourceResults": {
"items": {
"$ref": "#/2021-01/CashAcceptor.DepSourceRes"
},
"type": "array"
},
"numberOfItemsReceived": {
"minimum": 0,
"type": "integer"
},
"numberOfItemsRejected": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CashAcceptor.DepSource": {
"properties": {
"numberOfItemsToMove": {
"minimum": 0,
"type": "integer"
},
"source": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.DepSourceRes": {
"properties": {
"cashItem": {
"$ref": "#/2021-01/CashManagement.Item"
},
"cashUnitSource": {
"$ref": "#/2021-01/Storage.UnitName"
},
"numberOfItemsRemoved": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CashAcceptor.Deplete": {
"properties": {
"cashUnitTarget": {
"$ref": "#/2021-01/Storage.UnitName"
},
"depleteSources": {
"items": {
"$ref": "#/2021-01/CashAcceptor.DepSource"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.DeviceLockControl": {
"properties": {
"cashUnitAction": {
"enum": [
"lockAll",
"unlockAll",
"lockIndividual",
"noLockAction"
],
"type": "string"
},
"deviceAction": {
"enum": [
"lock",
"unlock",
"noLockAction"
],
"type": "string"
},
"unitLockControl": {
"items": {
"$ref": "#/2021-01/CashAcceptor.UnitLockControl"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.DeviceLockStatus": {
"properties": {
"deviceLockStatus": {
"enum": [
"lock",
"unlock",
"lockUnknown",
"lockNotSupported"
],
"type": "string"
},
"unitLock": {
"items": {
"$ref": "#/2021-01/CashAcceptor.UnitLock"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.IncompleteReplenish": {
"properties": {
"replenish": {
"$ref": "#/2021-01/CashAcceptor.RepRes"
}
},
"type": "object"
},
"CashAcceptor.Incompletedeplete": {
"properties": {
"deplete": {
"$ref": "#/2021-01/CashAcceptor.DepRes"
}
},
"type": "object"
},
"CashAcceptor.MoveItems": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
}
},
"type": "object"
},
"CashAcceptor.PosCapabilities": {
"properties": {
"posCapabilities": {
"items": {
"$ref": "#/2021-01/CashAcceptor.PosCaps"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.PosCaps": {
"properties": {
"itemsInsertedSensor": {
"type": "boolean"
},
"itemsTakenSensor": {
"type": "boolean"
},
"position": {
"$ref": "#/2021-01/CashManagement.Position"
},
"preparePresent": {
"type": "boolean"
},
"presentControl": {
"type": "boolean"
},
"retractAreas": {
"properties": {
"billCassettes": {
"type": "boolean"
},
"cashIn": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
},
"stacker": {
"type": "boolean"
},
"transport": {
"type": "boolean"
}
},
"type": "object"
},
"shutterControl": {
"type": "boolean"
},
"usage": {
"properties": {
"in": {
"type": "boolean"
},
"refuse": {
"type": "boolean"
},
"rollback": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"CashAcceptor.Position": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.Position"
},
"positionStatus": {
"enum": [
"empty",
"notEmpty",
"unknown",
"notSupported"
],
"type": "string"
},
"shutter": {
"enum": [
"closed",
"open",
"jammedOpen",
"jammedPartiallyOpen",
"jammedClosed",
"jammedUnknown",
"unknown",
"notSupported"
],
"type": "string"
},
"transport": {
"enum": [
"ok",
"inoperative",
"unknown",
"notSupported"
],
"type": "string"
},
"transportStatus": {
"enum": [
"empty",
"notEmpty",
"notEmptyCustomer",
"unknown",
"notSupported"
],
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.Present": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.Position"
}
},
"type": "object"
},
"CashAcceptor.PresentStatus": {
"properties": {
"additionalBunches": {
"enum": [
"none",
"oneMore",
"unknown"
],
"type": "string"
},
"bunchesRemaining": {
"type": "integer"
},
"position": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"presentState": {
"enum": [
"presented",
"notPresented",
"unknown"
],
"type": "string"
},
"remainingItems": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"returnedItems": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"totalReturnedItems": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
}
},
"type": "object"
},
"CashAcceptor.Rep": {
"properties": {
"replenishTargets": {
"items": {
"$ref": "#/2021-01/CashAcceptor.RepTarget"
},
"type": "array"
},
"source": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.RepInfo": {
"properties": {
"source": {
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.RepInfoRes": {
"properties": {
"targets": {
"items": {
"$ref": "#/2021-01/CashAcceptor.RepInfoTarget"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.RepInfoTarget": {
"properties": {
"target": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.RepRes": {
"properties": {
"numberOfItemsRejected": {
"minimum": 1,
"type": "integer"
},
"numberOfItemsRemoved": {
"minimum": 1,
"type": "integer"
},
"replenishTargetResults": {
"items": {
"$ref": "#/2021-01/CashAcceptor.RepTargetRes"
},
"type": "array"
}
},
"type": "object"
},
"CashAcceptor.RepTarget": {
"properties": {
"numberOfItemsToMove": {
"minimum": 0,
"type": "integer"
},
"target": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.RepTargetRes": {
"properties": {
"cashItem": {
"$ref": "#/2021-01/CashManagement.Item"
},
"numberOfItemsReceived": {
"minimum": 1,
"type": "integer"
},
"target": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashAcceptor.SignaturesIndex": {
"properties": {
"comparisonData": {
"type": "string"
},
"confidenceLevel": {
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"index": {
"type": "integer"
}
},
"type": "object"
},
"CashAcceptor.Status": {
"properties": {
"banknoteReader": {
"enum": [
"ok",
"inoperable",
"unknown",
"notSupported"
],
"type": "string"
},
"dropBox": {
"type": "boolean"
},
"intermediateStacker": {
"enum": [
"empty",
"notEmpty",
"full",
"unknown",
"notSupported"
],
"type": "string"
},
"positions": {
"items": {
"$ref": "#/2021-01/CashAcceptor.Position"
},
"type": "array"
},
"stackerItems": {
"enum": [
"customerAccess",
"noCustomerAccess",
"accessUnknown",
"noItems"
],
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.UnitLock": {
"properties": {
"storageUnit": {
"$ref": "#/2021-01/Storage.UnitName"
},
"unitLockStatus": {
"enum": [
"lock",
"unlock",
"lockUnknown"
],
"type": "string"
}
},
"type": "object"
},
"CashAcceptor.UnitLockControl": {
"properties": {
"storageUnit": {
"$ref": "#/2021-01/Storage.UnitName"
},
"unitAction": {
"enum": [
"lock",
"unlock"
],
"type": "string"
}
},
"type": "object"
},
"CashDispenser.Capabilities": {
"properties": {
"intermediateStacker": {
"type": "boolean"
},
"itemsTakenSensor": {
"type": "boolean"
},
"maxDispenseItems": {
"minimum": 1,
"type": "integer"
},
"moveItems": {
"properties": {
"fromCashUnit": {
"type": "boolean"
},
"toCashUnit": {
"type": "boolean"
},
"toStacker": {
"type": "boolean"
},
"toTransport": {
"type": "boolean"
}
},
"type": "object"
},
"positions": {
"properties": {
"bottom": {
"type": "boolean"
},
"center": {
"type": "boolean"
},
"front": {
"type": "boolean"
},
"left": {
"type": "boolean"
},
"rear": {
"type": "boolean"
},
"right": {
"type": "boolean"
},
"top": {
"type": "boolean"
}
},
"type": "object"
},
"retractAreas": {
"properties": {
"cashIn": {
"type": "boolean"
},
"itemCassette": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
},
"stacker": {
"type": "boolean"
},
"transport": {
"type": "boolean"
}
},
"type": "object"
},
"retractStackerActions": {
"properties": {
"cashIn": {
"type": "boolean"
},
"itemCassette": {
"type": "boolean"
},
"present": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
}
},
"type": "object"
},
"retractTransportActions": {
"properties": {
"cashIn": {
"type": "boolean"
},
"itemCassette": {
"type": "boolean"
},
"present": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"retract": {
"type": "boolean"
}
},
"type": "object"
},
"shutterControl": {
"type": "boolean"
},
"type": {
"enum": [
"tellerBill",
"selfServiceBill",
"tellerCoin",
"selfServiceCoin"
],
"type": "string"
}
},
"type": "object"
},
"CashDispenser.Count": {
"properties": {
"countedCashUnits": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/CashDispenser.CountedUnit"
}
},
"type": "object"
}
},
"type": "object"
},
"CashDispenser.CountUnits": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"unit": {
"pattern": "^all$|^unit[0-9A-Za-z]+$",
"type": "string"
}
},
"type": "object"
},
"CashDispenser.CountedUnit": {
"properties": {
"counted": {
"minimum": 1,
"type": "integer"
},
"dispensed": {
"minimum": 1,
"type": "integer"
},
"replenishmentStatus": {
"$ref": "#/2021-01/CashManagement.ReplenishmentStatus"
},
"status": {
"$ref": "#/2021-01/Storage.Status"
}
},
"type": "object"
},
"CashDispenser.Currencies": {
"patternProperties": {
"^[A-Z]{3}$": {
"minimum": 0.001,
"type": "number"
}
},
"type": "object"
},
"CashDispenser.DenominateRequest": {
"properties": {
"denomination": {
"$ref": "#/2021-01/CashDispenser.Denomination"
},
"mix": {
"pattern": "^mix[0-9A-Za-z]+$",
"type": "string"
},
"tellerID": {
"type": "integer"
}
},
"type": "object"
},
"CashDispenser.Denomination": {
"properties": {
"cashBox": {
"$ref": "#/2021-01/CashDispenser.Currencies"
},
"currencies": {
"$ref": "#/2021-01/CashDispenser.Currencies"
},
"values": {
"$ref": "#/2021-01/CashDispenser.Values"
}
},
"type": "object"
},
"CashDispenser.Dispense": {
"properties": {
"bunches": {
"default": "1",
"pattern": "^unknown$|^[0-9]*$",
"type": "string"
},
"denomination": {
"$ref": "#/2021-01/CashDispenser.Denomination"
},
"storage": {
"$ref": "#/2021-01/CashManagement.StorageInOut"
}
},
"type": "object"
},
"CashDispenser.DispenseRequest": {
"properties": {
"denomination": {
"$ref": "#/2021-01/CashDispenser.DenominateRequest"
},
"position": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"CashDispenser.Mix": {
"properties": {
"algorithm": {
"pattern": "^minimumBills$|^equalEmptying$|^maxCashUnits$|^[A-Za-z0-9]*$",
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"enum": [
"individual",
"algorithm",
"table"
],
"type": "string"
}
},
"type": "object"
},
"CashDispenser.MixRow": {
"properties": {
"amount": {
"minimum": 0,
"type": "number"
},
"mix": {
"items": {
"properties": {
"count": {
"minimum": 1,
"type": "integer"
},
"value": {
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"CashDispenser.MixTable": {
"properties": {
"mixNumber": {
"minimum": 1,
"type": "integer"
},
"mixRows": {
"items": {
"$ref": "#/2021-01/CashDispenser.MixRow"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"CashDispenser.Mixes": {
"properties": {
"mixes": {
"patternProperties": {
"^mix[0-9A-Za-z]+$": {
"$ref": "#/2021-01/CashDispenser.Mix"
}
},
"type": "object"
}
},
"type": "object"
},
"CashDispenser.OutPos": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"positionStatus": {
"enum": [
"empty",
"notEmpty",
"unknown",
"notSupported"
],
"type": "string"
},
"shutter": {
"enum": [
"closed",
"open",
"jammedOpen",
"jammedPartiallyOpen",
"jammedClosed",
"jammedUnknown",
"unknown",
"notSupported"
],
"type": "string"
},
"transport": {
"enum": [
"ok",
"inoperative",
"unknown",
"notSupported"
],
"type": "string"
},
"transportStatus": {
"enum": [
"empty",
"notEmpty",
"notEmptyCustomer",
"unknown",
"notSupported"
],
"type": "string"
}
},
"type": "object"
},
"CashDispenser.PrepareDispense": {
"properties": {
"action": {
"enum": [
"start",
"stop"
],
"type": "string"
}
},
"type": "object"
},
"CashDispenser.PresentStatus": {
"properties": {
"denomination": {
"$ref": "#/2021-01/CashDispenser.Denomination"
},
"presentState": {
"enum": [
"presented",
"notPresented",
"unknown"
],
"type": "string"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"CashDispenser.Status": {
"properties": {
"intermediateStacker": {
"enum": [
"empty",
"notEmpty",
"notEmptyCustomer",
"notEmptyUnknown",
"unknown",
"notSupported"
],
"type": "string"
},
"positions": {
"items": {
"$ref": "#/2021-01/CashDispenser.OutPos"
},
"type": "array"
}
},
"type": "object"
},
"CashDispenser.Values": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"CashManagement.AppLockIn": {
"type": "boolean"
},
"CashManagement.AppLockOut": {
"type": "boolean"
},
"CashManagement.BankNote": {
"properties": {
"cashItem": {
"$ref": "#/2021-01/CashManagement.CashItem"
},
"enabled": {
"default": true,
"type": "boolean"
}
},
"type": "object"
},
"CashManagement.BankNotes": {
"properties": {
"items": {
"patternProperties": {
"^type[0-9A-Z]+$": {
"$ref": "#/2021-01/CashManagement.BankNote"
}
},
"type": "object"
}
}
},
"CashManagement.CalibrateCommand": {
"properties": {
"numOfBills": {
"minimum": 0,
"type": "integer"
},
"position": {
"$ref": "#/2021-01/CashManagement.ItemPosition"
},
"unit": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashManagement.CalibrateCompletion": {
"properties": {
"numOfBills": {
"minimum": 0,
"type": "integer"
},
"position": {
"$ref": "#/2021-01/CashManagement.ItemPosition"
},
"unit": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashManagement.Capabilities": {
"properties": {
"cashBox": {
"type": "boolean"
},
"classificationList": {
"type": "boolean"
},
"exchangeType": {
"properties": {
"byHand": {
"type": "boolean"
}
},
"type": "object"
},
"itemInfoTypes": {
"properties": {
"image": {
"type": "boolean"
},
"serialNumber": {
"type": "boolean"
},
"signature": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"CashManagement.CashItem": {
"properties": {
"currency": {
"$ref": "#/2021-01/CashManagement.Currency"
},
"noteID": {
"minimum": 1,
"type": "integer"
},
"release": {
"minimum": 0,
"type": "integer"
},
"value": {
"$ref": "#/2021-01/CashManagement.Value"
}
},
"type": "object"
},
"CashManagement.CashItems": {
"items": {
"type": "string"
},
"type": "array"
},
"CashManagement.ClassificationElement": {
"properties": {
"currency": {
"$ref": "#/2021-01/CashManagement.Currency"
},
"level": {
"$ref": "#/2021-01/CashManagement.NoteLevel"
},
"serialNumber": {
"type": "string"
},
"value": {
"$ref": "#/2021-01/CashManagement.Value"
}
},
"type": "object"
},
"CashManagement.ClassificationList": {
"properties": {
"classificationElements": {
"items": {
"$ref": "#/2021-01/CashManagement.ClassificationElement"
},
"type": "array"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"CashManagement.ConfigureNotes": {
"properties": {
"items": {
"items": {
"properties": {
"enabled": {
"default": true,
"type": "boolean"
},
"item": {
"$ref": "#/2021-01/CashManagement.Item"
}
},
"type": "object"
},
"type": "array"
}
}
},
"CashManagement.Currency": {
"pattern": "^[A-Z]{3}$",
"type": "string"
},
"CashManagement.GetItemInfo": {
"properties": {
"itemInfoType": {
"properties": {
"image": {
"type": "boolean"
},
"serialNumber": {
"type": "boolean"
},
"signature": {
"type": "boolean"
}
},
"type": "object"
},
"items": {
"properties": {
"index": {
"minimum": 0,
"type": "integer"
},
"level": {
"$ref": "#/2021-01/CashManagement.NoteLevel"
}
},
"type": "object"
}
},
"type": "object"
},
"CashManagement.HighThreshold": {
"minimum": 1,
"type": "integer"
},
"CashManagement.IncompleteRetract": {
"properties": {
"itemNumberList": {
"$ref": "#/2021-01/CashManagement.Storage"
},
"reason": {
"enum": [
"retractFailure",
"retractAreaFull",
"foreignItemsDetected",
"invalidBunch"
],
"type": "string"
}
},
"type": "object"
},
"CashManagement.InputPosition": {
"default": "inDefault",
"enum": [
"inDefault",
"inLeft",
"inRight",
"inCenter",
"inTop",
"inBottom",
"inFront",
"inRear"
],
"type": "string"
},
"CashManagement.Item": {
"pattern": "^type[0-9A-Z]+$",
"type": "string"
},
"CashManagement.ItemInfo": {
"allOf": [
{
"$ref": "#/2021-01/CashManagement.Signature"
},
{
"properties": {
"image": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"itemLocation": {
"$ref": "#/2021-01/CashManagement.ItemLocation"
},
"level": {
"$ref": "#/2021-01/CashManagement.NoteLevel"
},
"onClassificationList": {
"$ref": "#/2021-01/CashManagement.OnClassificationList"
},
"serialNumber": {
"type": "string"
}
},
"type": "object"
}
],
"type": "object"
},
"CashManagement.ItemInfoSummary": {
"properties": {
"level": {
"$ref": "#/2021-01/CashManagement.NoteLevel"
},
"numOfItems": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"CashManagement.ItemInfos": {
"properties": {
"itemsList": {
"items": {
"$ref": "#/2021-01/CashManagement.ItemInfo"
},
"type": "array"
}
},
"type": "object"
},
"CashManagement.ItemLocation": {
"pattern": "^customer$|^unknown$|^stacker$|^output$|^transport$|^deviceUnknown$|^unit[0-9A-Za-z]+$",
"type": "string"
},
"CashManagement.ItemPosition": {
"properties": {
"outputPosition": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"retractArea": {
"$ref": "#/2021-01/CashManagement.Retract"
},
"unit": {
"$ref": "#/2021-01/Storage.UnitName"
}
},
"type": "object"
},
"CashManagement.LowThreshold": {
"minimum": 1,
"type": "integer"
},
"CashManagement.MaxRetracts": {
"minimum": 1,
"type": "integer"
},
"CashManagement.Name": {
"type": "string"
},
"CashManagement.NoteLevel": {
"enum": [
"unrecognized",
"counterfeit",
"suspect",
"fit",
"unfit",
"inked"
],
"type": "string"
},
"CashManagement.OnClassificationList": {
"enum": [
"onClassificationList",
"notOnClassificationList",
"classificationListUnknown"
],
"type": "string"
},
"CashManagement.Orientation": {
"enum": [
"frontTop",
"frontBottom",
"backTop",
"backBottom",
"unknown",
"notSupported"
],
"type": "string"
},
"CashManagement.OutputPosition": {
"default": "outDefault",
"enum": [
"outDefault",
"outLeft",
"outRight",
"outCenter",
"outTop",
"outBottom",
"outFront",
"outRear"
],
"type": "string"
},
"CashManagement.Position": {
"oneOf": [
{
"$ref": "#/2021-01/CashManagement.InputPosition"
},
{
"$ref": "#/2021-01/CashManagement.OutputPosition"
}
],
"type": "string"
},
"CashManagement.PositionInfo": {
"properties": {
"additionalBunches": {
"default": "0",
"pattern": "^unknown$|^[0-9]*$",
"type": "string"
},
"position": {
"$ref": "#/2021-01/CashManagement.Position"
}
},
"type": "object"
},
"CashManagement.ReplenishmentStatus": {
"enum": [
"ok",
"full",
"high",
"low",
"empty"
],
"type": "string"
},
"CashManagement.Retract": {
"properties": {
"index": {
"type": "integer"
},
"outputPosition": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"retractArea": {
"$ref": "#/2021-01/CashManagement.RetractArea"
}
},
"type": "object"
},
"CashManagement.RetractArea": {
"enum": [
"retract",
"transport",
"stacker",
"reject",
"itemCassette",
"cashIn"
],
"type": "string"
},
"CashManagement.Shutter": {
"enum": [
"closed",
"open",
"jammed",
"unknown"
],
"type": "string"
},
"CashManagement.ShutterStatusChanged": {
"properties": {
"position": {
"$ref": "#/2021-01/CashManagement.Position"
},
"shutter": {
"$ref": "#/2021-01/CashManagement.Shutter"
}
},
"type": "object"
},
"CashManagement.Signature": {
"properties": {
"noteType": {
"$ref": "#/2021-01/CashManagement.Item"
},
"orientation": {
"$ref": "#/2021-01/CashManagement.Orientation"
},
"signature": {
"$ref": "#/2021-01/CashManagement.SignatureData"
}
},
"type": "object"
},
"CashManagement.SignatureData": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"CashManagement.Status": {
"properties": {
"acceptor": {
"enum": [
"ok",
"attention",
"stop",
"unknown"
],
"type": "string"
},
"dispenser": {
"enum": [
"ok",
"attention",
"stop",
"unknown"
],
"type": "string"
},
"safeDoor": {
"enum": [
"doorNotSupported",
"doorOpen",
"doorClosed",
"doorUnknown"
],
"type": "string"
}
},
"type": "object"
},
"CashManagement.Storage": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/CashManagement.StorageCashIn",
"type": "object"
}
},
"type": "object"
},
"CashManagement.StorageCash": {
"properties": {
"capabilities": {
"$ref": "#/2021-01/CashManagement.StorageCashCapabilities"
},
"configuration": {
"$ref": "#/2021-01/CashManagement.StorageCashConfiguration"
},
"status": {
"$ref": "#/2021-01/CashManagement.StorageCashStatus"
}
},
"type": "object"
},
"CashManagement.StorageCashCapabilities": {
"properties": {
"cashItems": {
"$ref": "#/2021-01/CashManagement.CashItems"
},
"hardwareSensors": {
"type": "boolean"
},
"items": {
"$ref": "#/2021-01/CashManagement.StorageCashItemTypes"
},
"retractAreas": {
"minimum": 1,
"type": "integer"
},
"retractThresholds": {
"type": "boolean"
},
"types": {
"$ref": "#/2021-01/CashManagement.StorageCashTypes"
}
},
"type": "object"
},
"CashManagement.StorageCashConfiguration": {
"properties": {
"appLockIn": {
"$ref": "#/2021-01/CashManagement.AppLockIn"
},
"appLockOut": {
"$ref": "#/2021-01/CashManagement.AppLockOut"
},
"cashItems": {
"$ref": "#/2021-01/CashManagement.CashItems"
},
"currency": {
"$ref": "#/2021-01/CashManagement.Currency"
},
"highThreshold": {
"$ref": "#/2021-01/CashManagement.HighThreshold"
},
"items": {
"$ref": "#/2021-01/CashManagement.StorageCashItemTypes"
},
"lowThreshold": {
"$ref": "#/2021-01/CashManagement.LowThreshold"
},
"maxRetracts": {
"$ref": "#/2021-01/CashManagement.MaxRetracts"
},
"name": {
"$ref": "#/2021-01/CashManagement.Name"
},
"types": {
"$ref": "#/2021-01/CashManagement.StorageCashTypes"
},
"value": {
"$ref": "#/2021-01/CashManagement.Value"
}
},
"type": "object"
},
"CashManagement.StorageCashCount": {
"properties": {
"counterfeit": {
"type": "integer"
},
"fit": {
"type": "integer"
},
"inked": {
"type": "integer"
},
"suspect": {
"type": "integer"
},
"unfit": {
"type": "integer"
}
},
"type": "object"
},
"CashManagement.StorageCashCounts": {
"additionalProperties": {
"$ref": "#/2021-01/CashManagement.StorageCashCount"
},
"properties": {
"unrecognized": {
"type": "integer"
}
},
"type": "object"
},
"CashManagement.StorageCashIn": {
"properties": {
"deposited": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"distributed": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"rejected": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"retractOperations": {
"type": "integer"
},
"retracted": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"transport": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
}
},
"type": "object"
},
"CashManagement.StorageCashItemTypes": {
"properties": {
"counterfeit": {
"type": "boolean"
},
"coupon": {
"type": "boolean"
},
"document": {
"type": "boolean"
},
"fit": {
"type": "boolean"
},
"inked": {
"type": "boolean"
},
"suspect": {
"type": "boolean"
},
"unfit": {
"type": "boolean"
},
"unrecognized": {
"type": "boolean"
}
},
"type": "object"
},
"CashManagement.StorageCashOut": {
"properties": {
"distributed": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"diverted": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"presented": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"rejected": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"stacked": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"transport": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"unknown": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
}
},
"type": "object"
},
"CashManagement.StorageCashStatus": {
"properties": {
"accuracy": {
"enum": [
"notSupported",
"accurate",
"accurateSet",
"inaccurate",
"unknown"
],
"type": "string"
},
"in": {
"$ref": "#/2021-01/CashManagement.StorageCashIn"
},
"index": {
"minimum": 1,
"type": "integer"
},
"initial": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
},
"operationStatus": {
"enum": [
"dispenseInoperative",
"depositInoperative"
],
"type": "string"
},
"out": {
"$ref": "#/2021-01/CashManagement.StorageCashOut",
"type": "object"
},
"replenishmentStatus": {
"$ref": "#/2021-01/CashManagement.ReplenishmentStatus"
}
},
"type": "object"
},
"CashManagement.StorageCashTypes": {
"properties": {
"cashIn": {
"type": "boolean"
},
"cashInRetract": {
"type": "boolean"
},
"cashOut": {
"type": "boolean"
},
"cashOutRetract": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"replenishment": {
"type": "boolean"
}
},
"type": "object"
},
"CashManagement.StorageInOut": {
"properties": {
"in": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/CashManagement.StorageCashIn",
"type": "object"
}
},
"type": "object"
},
"out": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/CashManagement.StorageCashOut",
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"CashManagement.StorageSetCash": {
"properties": {
"configuration": {
"$ref": "#/2021-01/CashManagement.StorageCashConfiguration"
},
"status": {
"$ref": "#/2021-01/CashManagement.StorageSetCashStatus"
}
},
"type": "object"
},
"CashManagement.StorageSetCashStatus": {
"properties": {
"initial": {
"$ref": "#/2021-01/CashManagement.StorageCashCounts"
}
},
"type": "object"
},
"CashManagement.TellerDetails": {
"properties": {
"inputPosition": {
"$ref": "#/2021-01/CashManagement.InputPosition"
},
"outputPosition": {
"$ref": "#/2021-01/CashManagement.OutputPosition"
},
"tellerID": {
"minimum": 0,
"type": "integer"
},
"tellerTotals": {
"patternProperties": {
"^[A-Z]{3}$": {
"$ref": "#/2021-01/CashManagement.TellerTotals"
}
},
"type": "object"
}
},
"type": "object"
},
"CashManagement.TellerInfo": {
"properties": {
"currency": {
"$ref": "#/2021-01/CashManagement.Currency"
},
"tellerID": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"CashManagement.TellerTotals": {
"properties": {
"cashBoxDispensed": {
"minimum": 0,
"type": "number"
},
"cashBoxReceived": {
"minimum": 0,
"type": "number"
},
"coinsDispensed": {
"minimum": 0,
"type": "number"
},
"coinsReceived": {
"minimum": 0,
"type": "number"
},
"itemsDispensed": {
"minimum": 0,
"type": "number"
},
"itemsReceived": {
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"CashManagement.TellerUpdate": {
"properties": {
"action": {
"enum": [
"create",
"modify",
"delete"
],
"type": "string"
},
"tellerDetails": {
"$ref": "#/2021-01/CashManagement.TellerDetails"
}
},
"type": "object"
},
"CashManagement.Value": {
"minimum": 0,
"type": "number"
},
"Common.CapabilityProperties": {
"properties": {
"antiFraudModule": {
"type": "boolean"
},
"deviceInformation": {
"items": {
"$ref": "#/2021-01/Common.DeviceInformation"
},
"type": "array"
},
"endToEndSecurity": {
"$ref": "#/2021-01/Common.EndToEndSecurity",
"type": "object"
},
"powerSaveControl": {
"type": "boolean"
},
"serviceVersion": {
"type": "string"
}
},
"type": "object"
},
"Common.Caps": {
"properties": {
"auxiliaries": {
"$ref": "#/2021-01/Auxiliaries.Capabilities",
"type": "object"
},
"barcodeReader": {
"$ref": "#/2021-01/BarcodeReader.Capabilities",
"type": "object"
},
"biometric": {
"$ref": "#/2021-01/Biometric.Capabilities",
"type": "object"
},
"camera": {
"$ref": "#/2021-01/Camera.Capabilities",
"type": "object"
},
"cardReader": {
"$ref": "#/2021-01/CardReader.Capabilities",
"type": "object"
},
"cashAcceptor": {
"$ref": "#/2021-01/CashAcceptor.Capabilities"
},
"cashDispenser": {
"$ref": "#/2021-01/CashDispenser.Capabilities"
},
"cashManagement": {
"$ref": "#/2021-01/CashManagement.Capabilities",
"type": "object"
},
"common": {
"$ref": "#/2021-01/Common.CapabilityProperties"
},
"crypto": {
"$ref": "#/2021-01/Crypto.Capabilities",
"type": "object"
},
"interfaces": {
"items": {
"$ref": "#/2021-01/Common.Interface"
},
"type": "array"
},
"keyManagement": {
"$ref": "#/2021-01/KeyManagement.Capabilities",
"type": "object"
},
"keyboard": {
"$ref": "#/2021-01/Keyboard.Capabilities",
"type": "object"
},
"lights": {
"$ref": "#/2021-01/Lights.Capabilities",
"type": "object"
},
"pinPad": {
"$ref": "#/2021-01/PinPad.Capabilities",
"type": "object"
},
"printer": {
"$ref": "#/2021-01/Printer.Capabilities",
"type": "object"
},
"textTerminal": {
"$ref": "#/2021-01/TextTerminal.Capabilities",
"type": "object"
},
"vendorApplication": {
"$ref": "#/2021-01/VendorApplication.Capabilities",
"type": "object"
}
},
"required": [
"interfaces",
"common"
]
},
"Common.CommandProperties": {
"properties": {
"timeout": {
"default": 0,
"type": "integer"
}
}
},
"Common.CompletionCodeEnum": {
"enum": [
"success",
"commandErrorCode",
"canceled",
"deviceNotReady",
"hardwareError",
"internalError",
"invalidCommand",
"invalidRequestID",
"timeOut",
"unsupportedCommand",
"invalidData",
"userError",
"unsupportedData",
"fraudAttempt",
"sequenceError",
"authorizationRequired",
"noCommandNonce",
"invalidToken",
"invalidTokenNonce",
"invalidTokenHMAC",
"invalidTokenFormat",
"invalidTokenKeyNoValue",
"notEnoughSpace"
]
},
"Common.CompletionCodeProperty": {
"properties": {
"completionCode": {
"$ref": "#/2021-01/Common.CompletionCodeEnum",
"type": "string"
}
}
},
"Common.CompletionCodePropertyWithErrorCode": {
"properties": {
"completionCode": {
"$ref": "#/2021-01/Common.CompletionCodeEnum",
"type": "string"
}
}
},
"Common.CompletionProperties": {
"allOf": [
{
"$ref": "#/2021-01/Common.CompletionCodeProperty"
},
{
"$ref": "#/2021-01/Common.ErrorDescriptionProperty"
}
]
},
"Common.CompletionPropertiesWithErrorCode": {
"allOf": [
{
"$ref": "#/2021-01/Common.CompletionCodePropertyWithErrorCode"
},
{
"$ref": "#/2021-01/Common.ErrorDescriptionProperty"
}
]
},
"Common.DeviceInformation": {
"properties": {
"firmware": {
"items": {
"$ref": "#/2021-01/Common.Firmware"
},
"type": "array"
},
"modelDescription": {
"type": "string"
},
"modelName": {
"type": "string"
},
"revisionNumber": {
"type": "string"
},
"serialNumber": {
"type": "string"
},
"software": {
"items": {
"$ref": "#/2021-01/Common.Software"
},
"type": "array"
}
},
"type": "object"
},
"Common.EndToEndSecurity": {
"properties": {
"commandNonceTimeout": {
"minimum": 0,
"type": "integer"
},
"commands": {
"items": {
"pattern": "^[A-Za-z][A-Za-z0-9]*\\.[A-Za-z][A-Za-z0-9]*$",
"type": "string"
},
"type": "array"
},
"hardwareSecurityElement": {
"type": "boolean"
},
"required": {
"enum": [
"ifConfigured",
"always"
],
"type": "string"
},
"responseSecurityEnabled": {
"enum": [
"notSupported",
"ifConfigured",
"always"
],
"type": "string"
}
},
"required": [
"required",
"hardwareSecurityElement",
"responseSecurityEnabled",
"commandNonceTimeout",
"commands"
]
},
"Common.ErrorDescriptionProperty": {
"properties": {
"errorDescription": {
"type": "string"
}
}
},
"Common.Exchange": {
"default": "notSupported",
"enum": [
"notSupported",
"active",
"inactive"
],
"type": "string"
},
"Common.Firmware": {
"properties": {
"firmwareName": {
"type": "string"
},
"firmwareVersion": {
"type": "string"
},
"hardwareRevision": {
"type": "string"
}
},
"type": "object"
},
"Common.Interface": {
"properties": {
"commands": {
"patternProperties": {
"^[0-9A-Za-z]*\\.[0-9A-Za-z]*$": {
"properties": {
"versions": {
"items": {
"pattern": "^[1-9][0-9]*\\.([1-9][0-9]*|0)$",
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"type": "object"
},
"events": {
"patternProperties": {
"^[0-9A-Za-z]*\\.[0-9A-Za-z]*$": {
"properties": {
"versions": {
"items": {
"pattern": "^[1-9][0-9]*\\.([1-9][0-9]*|0)$",
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"type": "object"
},
"maximumRequests": {
"minimum": 0,
"type": "integer"
},
"name": {
"enum": [
"Common",
"CardReader",
"CashAcceptor",
"CashDispenser",
"CashManagement",
"PinPad",
"Crypto",
"KeyManagement",
"Keyboard",
"TextTerminal",
"Printer",
"BarcodeReader",
"Camera",
"Lights",
"Auxiliaries",
"VendorMode",
"VendorApplication",
"Storage"
],
"type": "string"
}
},
"type": "object"
},
"Common.PositionStatus": {
"enum": [
"inPosition",
"notInPosition",
"Unknown"
],
"type": "string"
},
"Common.Software": {
"properties": {
"softwareName": {
"type": "string"
},
"softwareVersion": {
"type": "string"
}
},
"type": "object"
},
"Common.Status": {
"properties": {
"auxiliaries": {
"$ref": "#/2021-01/Auxiliaries.Status",
"type": "object"
},
"barcodeReader": {
"$ref": "#/2021-01/BarcodeReader.Status",
"type": "object"
},
"biometric": {
"$ref": "#/2021-01/Biometric.Status",
"type": "object"
},
"camera": {
"$ref": "#/2021-01/Camera.Status",
"type": "object"
},
"cardReader": {
"$ref": "#/2021-01/CardReader.Status",
"type": "object"
},
"cashAcceptor": {
"$ref": "#/2021-01/CashAcceptor.Status"
},
"cashDispenser": {
"$ref": "#/2021-01/CashDispenser.Status"
},
"cashManagement": {
"$ref": "#/2021-01/CashManagement.Status",
"type": "object"
},
"common": {
"$ref": "#/2021-01/Common.StatusProperties",
"required": [
"device"
]
},
"keyManagement": {
"$ref": "#/2021-01/KeyManagement.Status",
"type": "object"
},
"keyboard": {
"$ref": "#/2021-01/Keyboard.Status",
"type": "object"
},
"lights": {
"$ref": "#/2021-01/Lights.Status",
"type": "object"
},
"printer": {
"$ref": "#/2021-01/Printer.Status",
"type": "object"
},
"textTerminal": {
"$ref": "#/2021-01/TextTerminal.Status",
"type": "object"
},
"vendorApplication": {
"$ref": "#/2021-01/VendorApplication.Status",
"type": "object"
},
"vendorMode": {
"$ref": "#/2021-01/VendorMode.Status",
"type": "object"
}
},
"required": [
"common"
]
},
"Common.StatusProperties": {
"properties": {
"antiFraudModule": {
"enum": [
"ok",
"inoperable",
"deviceDetected",
"unknown"
],
"type": "string"
},
"device": {
"enum": [
"online",
"offline",
"powerOff",
"noDevice",
"hardwareError",
"userError",
"deviceBusy",
"fraudAttempt",
"potentialFraud",
"starting"
],
"type": "string"
},
"devicePosition": {
"$ref": "#/2021-01/Common.PositionStatus"
},
"endToEndSecurity": {
"default": "notSupported",
"enum": [
"notSupported",
"notEnforced",
"notConfigured",
"enforced"
],
"type": "string"
},
"exchange": {
"$ref": "#/2021-01/Common.Exchange"
},
"powerSaveRecoveryTime": {
"type": "integer"
}
},
"type": "object"
},
"Common.TransactionState": {
"properties": {
"state": {
"enum": [
"active",
"inactive"
],
"type": "string"
},
"transactionID": {
"type": "string"
}
},
"type": "object"
},
"Common.XFSHeader": {
"properties": {
"name": {
"type": "string"
},
"requestId": {
"minimum": 0,
"type": "integer"
},
"type": {
"enum": [
"command",
"acknowledge",
"event",
"completion",
"unsolicited"
],
"type": "string"
}
},
"required": [
"requestId",
"type",
"name"
],
"type": "object"
},
"Crypto.AuthenticationAttribute": {
"patternProperties": {
"^M[0-8]$|^S[0-2]$": {
"patternProperties": {
"^[ADRT]$": {
"patternProperties": {
"^[CGST]$": {
"properties": {
"cryptoMethod": {
"properties": {
"rsassaPkcs1V15": {
"type": "boolean"
},
"rsassaPss": {
"type": "boolean"
}
},
"type": "object"
},
"hashAlgorithm": {
"properties": {
"sha1": {
"type": "boolean"
},
"sha256": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"Crypto.Capabilities": {
"properties": {
"authenticationAttributes": {
"$ref": "#/2021-01/Crypto.AuthenticationAttribute"
},
"cryptoAttributes": {
"$ref": "#/2021-01/Crypto.CryptoAttribute"
},
"emvHashAlgorithm": {
"properties": {
"sha1Digest": {
"type": "boolean"
},
"sha256Digest": {
"type": "boolean"
}
},
"type": "object"
},
"verifyAttributes": {
"$ref": "#/2021-01/Crypto.VerifyAttribute"
}
},
"required": [
"algorithms"
],
"type": "object"
},
"Crypto.CompressionProperty": {
"properties": {
"compression": {
"pattern": "^[ @]$",
"type": "string"
}
}
},
"Crypto.CryptoAttribute": {
"patternProperties": {
"^D[0-1]$": {
"patternProperties": {
"^[ADRT]$": {
"patternProperties": {
"^[DE]$": {
"properties": {
"cryptoMethod": {
"properties": {
"cbc": {
"type": "boolean"
},
"cfb": {
"type": "boolean"
},
"ctr": {
"type": "boolean"
},
"ecb": {
"type": "boolean"
},
"ofb": {
"type": "boolean"
},
"rsaesOaep": {
"type": "boolean"
},
"rsaesPkcs1V15": {
"type": "boolean"
},
"xts": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"cryptoMethod"
],
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"Crypto.IVProperties": {
"properties": {
"iv": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"ivKey": {
"type": "string"
}
}
},
"Crypto.PaddingProperty": {
"properties": {
"padding": {
"maximum": 255,
"minimum": 0,
"type": "integer"
}
}
},
"Crypto.VerifyAttribute": {
"patternProperties": {
"^M[0-8]$|^S[0-2]$": {
"patternProperties": {
"^[ADRT]$": {
"patternProperties": {
"^V$": {
"properties": {
"cryptoMethod": {
"properties": {
"rsassaPkcs1V15": {
"type": "boolean"
},
"rsassaPss": {
"type": "boolean"
}
},
"type": "object"
},
"hashAlgorithm": {
"properties": {
"sha1": {
"type": "boolean"
},
"sha256": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"DeleteKeyCommand": {
"properties": {
"deleteKey": {
"$ref": "#/2021-01/KeyManagement.DeleteKeyInputParameters"
}
}
},
"InitializationCommand": {
"properties": {
"initialization": {
"$ref": "#/2021-01/KeyManagement.InitializationInputParameters"
}
}
},
"KeyManagement.Authentication": {
"properties": {
"authentication": {
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"key": {
"type": "string"
},
"method": {
"$ref": "#/2021-01/KeyManagement.AuthenticationMethod"
}
},
"type": "object"
}
}
},
"KeyManagement.AuthenticationMethod": {
"enum": [
"none",
"certhost",
"sigHost",
"ca",
"hl",
"cbcmac",
"cmac",
"reserved1",
"reserved2",
"reserved3"
],
"type": "string"
},
"KeyManagement.Capabilities": {
"properties": {
"certificateTypes": {
"properties": {
"encKey": {
"type": "boolean"
},
"hostKey": {
"type": "boolean"
},
"verificationKey": {
"type": "boolean"
}
},
"type": "object"
},
"crklLoadOptions": {
"properties": {
"noRandom": {
"type": "boolean"
},
"noRandomCrl": {
"type": "boolean"
},
"random": {
"type": "boolean"
},
"randomCrl": {
"type": "boolean"
}
},
"type": "object"
},
"decryptAttributes": {
"$ref": "#/2021-01/KeyManagement.DecryptAttribute"
},
"derivationAlgorithms": {
"properties": {
"chipZka": {
"type": "boolean"
}
},
"type": "object"
},
"desKeyLength": {
"properties": {
"double": {
"type": "boolean"
},
"single": {
"type": "boolean"
},
"triple": {
"type": "boolean"
}
},
"type": "object"
},
"emvImportSchemes": {
"properties": {
"chksumCA": {
"type": "boolean"
},
"epiCA": {
"type": "boolean"
},
"icc": {
"type": "boolean"
},
"iccPin": {
"type": "boolean"
},
"issuer": {
"type": "boolean"
},
"pkcsv15CA": {
"type": "boolean"
},
"plainCA": {
"type": "boolean"
}
},
"type": "object"
},
"hsmVendor": {
"type": "string"
},
"keyAttributes": {
"$ref": "#/2021-01/KeyManagement.KeyAttribute"
},
"keyBlockImportFormats": {
"properties": {
"A": {
"type": "boolean"
},
"B": {
"type": "boolean"
},
"C": {
"type": "boolean"
},
"D": {
"type": "boolean"
}
},
"type": "object"
},
"keyCheckModes": {
"properties": {
"self": {
"type": "boolean"
},
"zero": {
"type": "boolean"
}
},
"type": "object"
},
"keyImportThroughParts": {
"type": "boolean"
},
"keyNum": {
"type": "integer"
},
"loadCertOptions": {
"items": {
"properties": {
"option": {
"properties": {
"newHost": {
"type": "boolean"
},
"replaceHost": {
"type": "boolean"
}
},
"type": "object"
},
"signer": {
"enum": [
"certHost",
"sigHost",
"ca",
"hl",
"certHostTr34",
"caTr34",
"hlTr34"
],
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"rsaAuthenticationScheme": {
"properties": {
"2partySig": {
"type": "boolean"
},
"3partyCert": {
"type": "boolean"
},
"3partyCertTr34": {
"type": "boolean"
}
},
"type": "object"
},
"rsaCryptAlgorithm": {
"properties": {
"oaep": {
"type": "boolean"
},
"pkcs1V15": {
"type": "boolean"
}
},
"type": "object"
},
"rsaKeyCheckMode": {
"properties": {
"sha1": {
"type": "boolean"
},
"sha256": {
"type": "boolean"
}
},
"type": "object"
},
"rsaSignatureAlgorithm": {
"properties": {
"pkcs1V15": {
"type": "boolean"
},
"pss": {
"type": "boolean"
}
},
"type": "object"
},
"signatureScheme": {
"properties": {
"enhancedRkl": {
"type": "boolean"
},
"exportDeviceId": {
"type": "boolean"
},
"randomNumber": {
"type": "boolean"
}
},
"type": "object"
},
"symmetricKeyManagementMethods": {
"properties": {
"fixedKey": {
"type": "boolean"
},
"masterKey": {
"type": "boolean"
},
"tdesDukpt": {
"type": "boolean"
}
},
"type": "object"
},
"verifyAttributes": {
"$ref": "#/2021-01/KeyManagement.VerifyAttribute"
}
},
"required": [
"keyNum",
"keyCheckModes",
"rsaAuthenticationScheme",
"rsaSignatureAlgorithm",
"rsaCryptAlgorithm",
"rsaKeyCheckMode",
"signatureScheme",
"emvImportSchemes",
"keyImportThroughParts",
"keyBlockImportFormats",
"desKeyLength",
"certificateTypes",
"loadCertOptions",
"crklLoadOptions",
"restrictedKeyEncKeySupport",
"symmetricKeyManagementMethods",
"keyAttributes",
"decryptAttributes",
"verifyAttributes"
],
"type": "object"
},
"KeyManagement.DecryptAttribute": {
"patternProperties": {
"^[0-9ADRT]$": {
"properties": {
"decryptMethod": {
"properties": {
"cbc": {
"type": "boolean"
},
"cfb": {
"type": "boolean"
},
"ctr": {
"type": "boolean"
},
"ecb": {
"type": "boolean"
},
"ofb": {
"type": "boolean"
},
"rsaesOaep": {
"type": "boolean"
},
"rsaesPkcs1V15": {
"type": "boolean"
},
"xts": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"decryptMethod"
],
"type": "object"
}
},
"type": "object"
},
"KeyManagement.DeleteKeyInputParameters": {
"properties": {
"key": {
"type": "string"
}
},
"type": "object"
},
"KeyManagement.InitializationInputParameters": {
"type": "object"
},
"KeyManagement.KeyAttribute": {
"patternProperties": {
"^B[0-3]$|^C0$|^D[0-3]$|^E[0-7]$|^I0$|^K[0-4]$|^M[0-8]$|^P[0-1]$|^S[0-2]$|^V[0-5]$|^[0-9][0-9]$": {
"patternProperties": {
"^[0-9ADRT]$": {
"patternProperties": {
"^[0-9BCDEGSTVXY]$": {
"properties": {
"restrictedKeyUsage": {
"pattern": "^B[0-3]$|^C0$|^D[0-3]$|^E[0-7]$|^I0$|^K[0-4]$|^M[0-8]$|^P[0-1]$|^S[0-2]$|^V[0-5]$|^[0-9][0-9]$",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"KeyManagement.KeyDetail": {
"properties": {
"activatingDate": {
"pattern": "^[0-9]{4}(0[1-9]|1[0-2])(0[1-9]|[12][0-9]|3[01])$",
"type": "string"
},
"expiryDate": {
"pattern": "^[0-9]{4}(0[1-9]|1[0-2])(0[1-9]|[12][0-9]|3[01])$",
"type": "string"
},
"generation": {
"maximum": 99,
"minimum": 0,
"type": "integer"
},
"keyBlockInfo": {
"properties": {
"algorithm": {
"pattern": "^[0-9ADEHRST]$",
"type": "string"
},
"exportability": {
"pattern": "^[0-9ESN]$",
"type": "string"
},
"keyLength": {
"minimum": 0,
"type": "integer"
},
"keyUsage": {
"pattern": "^B[0-3]$|^C0$|^D[0-3]$|^E[0-7]$|^I0$|^K[0-4]$|^M[0-8]$|^P[0-1]$|^S[0-2]$|^V[0-5]$|^[0-9][0-9]$",
"type": "string"
},
"keyVersionNumber": {
"pattern": "^[0-9a-zA-Z][0-9a-zA-Z]$",
"type": "string"
},
"modeOfUse": {
"pattern": "^[0-9BCDEGNSTVXY]$",
"type": "string"
},
"optionalBlockHeader": {
"type": "string"
},
"restrictedKeyUsage": {
"pattern": "^B[0-3]$|^C0$|^D[0-3]$|^E[0-7]$|^I0$|^K[0-4]$|^M[0-8]$|^P[0-1]$|^S[0-2]$|^V[0-5]$|^[0-9][0-9]$",
"type": "string"
}
},
"required": [
"keyUsage",
"algorithm",
"modeOfUse",
"exportability",
"keyLength"
],
"type": "object"
},
"loaded": {
"enum": [
"no",
"yes",
"unknown",
"construct"
],
"type": "string"
},
"version": {
"maximum": 99,
"minimum": 0,
"type": "integer"
}
},
"required": [
"loaded"
],
"type": "object"
},
"KeyManagement.Padding": {
"maximum": 255,
"minimum": 0,
"type": "integer"
},
"KeyManagement.RSASignatureAlgorithm": {
"enum": [
"na",
"rsassaPkcs1V15",
"rsassaPss"
],
"type": "string"
},
"KeyManagement.Status": {
"properties": {
"certificateState": {
"enum": [
"unknown",
"primary",
"secondary",
"notReady"
],
"type": "string"
},
"encryptionState": {
"enum": [
"ready",
"notReady",
"notInitialized",
"busy",
"undefined",
"initialized"
],
"type": "string"
}
},
"required": [
"encryptionState",
"certificateState"
]
},
"KeyManagement.TypeDataItemToExport": {
"enum": [
"deviceId",
"publicKey"
],
"type": "string"
},
"KeyManagement.VerifyAttribute": {
"patternProperties": {
"^M[0-8]$|^S[0-2]$|^[0-9][0-9]$": {
"patternProperties": {
"^[0-9ADRT]$": {
"patternProperties": {
"^[0-9SV]$": {
"properties": {
"cryptoMethod": {
"properties": {
"kcvNone": {
"type": "boolean"
},
"kcvSelf": {
"type": "boolean"
},
"kcvZero": {
"type": "boolean"
},
"rsassaPkcs1V15": {
"type": "boolean"
},
"rsassaPss": {
"type": "boolean"
},
"sigNone": {
"type": "boolean"
}
},
"type": "object"
},
"hashAlgorithm": {
"properties": {
"sha1": {
"type": "boolean"
},
"sha256": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"cryptoMethod",
"hashAlgorithm"
],
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"Keyboard.ActiveKeys": {
"patternProperties": {
"^(zero|one|two|three|four|five|six|seven|eight|nine|[a-f]|enter|cancel|clear|backspace|help|decPoint|shift|doubleZero|tripleZero|fdk(0[1-9]|[12][0-9]|3[0-2])|oem[a-zA-Z0-9]*)$": {
"$ref": "#/2021-01/Keyboard.Key"
}
},
"type": "object"
},
"Keyboard.AllKeysEnum": {
"pattern": "^(zero|one|two|three|four|five|six|seven|eight|nine|[a-f]|enter|cancel|clear|backspace|help|decPoint|shift|doubleZero|tripleZero|fdk(0[1-9]|[12][0-9]|3[0-2])|oem[a-zA-Z0-9]*)$",
"type": "string"
},
"Keyboard.Capabilities": {
"properties": {
"autoBeep": {
"properties": {
"activeAvailable": {
"type": "boolean"
},
"activeSelectable": {
"type": "boolean"
},
"inactiveAvailable": {
"type": "boolean"
},
"inactiveSelectable": {
"type": "boolean"
}
},
"type": "object"
},
"etsCaps": {
"items": {
"properties": {
"float": {
"properties": {
"x": {
"type": "boolean"
},
"y": {
"type": "boolean"
}
},
"type": "object"
},
"maximumTouchFrames": {
"minimum": 0,
"type": "integer"
},
"maximumTouchKeys": {
"minimum": 0,
"type": "integer"
},
"xPos": {
"minimum": 0,
"type": "integer"
},
"xSize": {
"minimum": 0,
"type": "integer"
},
"yPos": {
"minimum": 0,
"type": "integer"
},
"ySize": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"autoBeep"
],
"type": "object"
},
"Keyboard.EntryCompletion": {
"enum": [
"auto",
"enter",
"cancel",
"continue",
"clear",
"backspace",
"fdk",
"help",
"fk",
"contFdk"
],
"type": "string"
},
"Keyboard.Key": {
"properties": {
"terminate": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"Keyboard.KeyPressed": {
"properties": {
"completion": {
"$ref": "#/2021-01/Keyboard.EntryCompletion"
},
"digit": {
"$ref": "#/2021-01/Keyboard.AllKeysEnum"
}
},
"type": "object"
},
"Keyboard.Layout": {
"properties": {
"data": {
"items": {
"$ref": "#/2021-01/Keyboard.LayoutFrame"
},
"type": "array"
},
"pin": {
"items": {
"$ref": "#/2021-01/Keyboard.LayoutFrame"
},
"type": "array"
},
"secure": {
"items": {
"$ref": "#/2021-01/Keyboard.LayoutFrame"
},
"type": "array"
}
},
"type": "object"
},
"Keyboard.LayoutFrame": {
"properties": {
"float": {
"properties": {
"x": {
"default": false,
"type": "boolean"
},
"y": {
"default": false,
"type": "boolean"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"keys": {
"items": {
"properties": {
"key": {
"$ref": "#/2021-01/Keyboard.AllKeysEnum"
},
"shiftKey": {
"$ref": "#/2021-01/Keyboard.AllKeysEnum"
},
"xPos": {
"maximum": 999,
"minimum": 0,
"type": "integer"
},
"xSize": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"yPos": {
"maximum": 999,
"minimum": 0,
"type": "integer"
},
"ySize": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"required": [
"xPos",
"yPos",
"xSize",
"ySize"
],
"type": "object"
},
"type": "array"
},
"xPos": {
"minimum": 0,
"type": "integer"
},
"xSize": {
"minimum": 0,
"type": "integer"
},
"yPos": {
"minimum": 0,
"type": "integer"
},
"ySize": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"xPos",
"yPos",
"xSize",
"ySize"
],
"type": "object"
},
"Keyboard.Status": {
"properties": {
"autoBeepMode": {
"properties": {
"activeAvailable": {
"default": false,
"type": "boolean"
},
"inactiveAvailable": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"autoBeepMode"
]
},
"Lights.Capabilities": {
"additionalProperties": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"properties": {
"billAcceptor": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"billAcceptor2": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"cardReader": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"cardReader2": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"coinAcceptor": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"coinDispenser": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"contactless": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"documentPrinter": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"envelopeDepository": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"envelopeDispenser": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"fasciaLight": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"notesDispenser": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"notesDispenser2": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"passbookPrinter": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"pinPad": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"receiptPrinter": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"scanner": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"statusBad": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"statusGood": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"statusInService": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"statusSupervisor": {
"$ref": "#/2021-01/Lights.LightCapabilities"
},
"statusWarning": {
"$ref": "#/2021-01/Lights.LightCapabilities"
}
},
"type": "object"
},
"Lights.LightCapabilities": {
"properties": {
"color": {
"properties": {
"blue": {
"type": "boolean"
},
"cyan": {
"type": "boolean"
},
"green": {
"type": "boolean"
},
"magenta": {
"type": "boolean"
},
"red": {
"type": "boolean"
},
"white": {
"type": "boolean"
},
"yellow": {
"type": "boolean"
}
},
"type": "object"
},
"direction": {
"properties": {
"entry": {
"type": "boolean"
},
"exit": {
"type": "boolean"
}
},
"type": "object"
},
"flashRate": {
"properties": {
"continuous": {
"type": "boolean"
},
"medium": {
"type": "boolean"
},
"off": {
"type": "boolean"
},
"quick": {
"type": "boolean"
},
"slow": {
"type": "boolean"
}
},
"type": "object"
},
"position": {
"properties": {
"bottom": {
"type": "boolean"
},
"center": {
"type": "boolean"
},
"front": {
"type": "boolean"
},
"left": {
"type": "boolean"
},
"rear": {
"type": "boolean"
},
"right": {
"type": "boolean"
},
"top": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"Lights.LightState": {
"properties": {
"color": {
"enum": [
"red",
"green",
"yellow",
"blue",
"cyan",
"magenta",
"white"
],
"type": "string"
},
"direction": {
"enum": [
"entry",
"exit"
],
"type": "string"
},
"flashRate": {
"enum": [
"off",
"slow",
"medium",
"quick",
"continuous"
],
"type": "string"
},
"position": {
"enum": [
"left",
"right",
"center",
"top",
"bottom",
"front",
"rear"
],
"type": "string"
}
},
"type": "object"
},
"Lights.Status": {
"additionalProperties": {
"$ref": "#/2021-01/Lights.LightState"
},
"properties": {
"billAcceptor": {
"$ref": "#/2021-01/Lights.LightState"
},
"billAcceptor2": {
"$ref": "#/2021-01/Lights.LightState"
},
"cardReader": {
"$ref": "#/2021-01/Lights.LightState"
},
"cardReader2": {
"$ref": "#/2021-01/Lights.LightState"
},
"coinAcceptor": {
"$ref": "#/2021-01/Lights.LightState"
},
"coinDispenser": {
"$ref": "#/2021-01/Lights.LightState"
},
"contactless": {
"$ref": "#/2021-01/Lights.LightState"
},
"documentPrinter": {
"$ref": "#/2021-01/Lights.LightState"
},
"envelopeDepository": {
"$ref": "#/2021-01/Lights.LightState"
},
"envelopeDispenser": {
"$ref": "#/2021-01/Lights.LightState"
},
"fasciaLight": {
"$ref": "#/2021-01/Lights.LightState"
},
"notesDispenser": {
"$ref": "#/2021-01/Lights.LightState"
},
"notesDispenser2": {
"$ref": "#/2021-01/Lights.LightState"
},
"passbookPrinter": {
"$ref": "#/2021-01/Lights.LightState"
},
"pinPad": {
"$ref": "#/2021-01/Lights.LightState"
},
"receiptPrinter": {
"$ref": "#/2021-01/Lights.LightState"
},
"scanner": {
"$ref": "#/2021-01/Lights.LightState"
},
"statusBad": {
"$ref": "#/2021-01/Lights.LightState"
},
"statusGood": {
"$ref": "#/2021-01/Lights.LightState"
},
"statusInService": {
"$ref": "#/2021-01/Lights.LightState"
},
"statusSupervisor": {
"$ref": "#/2021-01/Lights.LightState"
},
"statusWarning": {
"$ref": "#/2021-01/Lights.LightState"
}
},
"type": "object"
},
"MediaControlProperties": {
"properties": {
"alarm": {
"type": "boolean"
},
"backward": {
"type": "boolean"
},
"clearBuffer": {
"type": "boolean"
},
"cut": {
"type": "boolean"
},
"eject": {
"type": "boolean"
},
"ejectToTransport": {
"type": "boolean"
},
"expel": {
"type": "boolean"
},
"flush": {
"type": "boolean"
},
"forward": {
"type": "boolean"
},
"park": {
"type": "boolean"
},
"partialCut": {
"type": "boolean"
},
"perforate": {
"type": "boolean"
},
"retract": {
"type": "boolean"
},
"rotate180": {
"type": "boolean"
},
"skip": {
"type": "boolean"
},
"stack": {
"type": "boolean"
},
"stamp": {
"type": "boolean"
},
"turnMedia": {
"type": "boolean"
}
}
},
"PinPad.Capabilities": {
"properties": {
"display": {
"properties": {
"display": {
"type": "boolean"
},
"ledThrough": {
"type": "boolean"
},
"none": {
"type": "boolean"
}
},
"type": "object"
},
"idcConnect": {
"type": "boolean"
},
"pinBlockAttributes": {
"$ref": "#/2021-01/PinPad.PinBlockAttribute"
},
"pinCanPersistAfterUse": {
"type": "boolean"
},
"pinFormats": {
"properties": {
"ansi": {
"type": "boolean"
},
"ap": {
"type": "boolean"
},
"banksys": {
"type": "boolean"
},
"diebold": {
"type": "boolean"
},
"dieboldCo": {
"type": "boolean"
},
"eci2": {
"type": "boolean"
},
"eci3": {
"type": "boolean"
},
"emv": {
"type": "boolean"
},
"ibm3624": {
"type": "boolean"
},
"iso0": {
"type": "boolean"
},
"iso1": {
"type": "boolean"
},
"iso3": {
"type": "boolean"
},
"iso4": {
"type": "boolean"
},
"visa": {
"type": "boolean"
},
"visa3": {
"type": "boolean"
}
},
"type": "object"
},
"presentationAlgorithms": {
"properties": {
"presentClear": {
"type": "boolean"
}
},
"type": "object"
},
"setPinblockDataRequired": {
"type": "boolean"
},
"typeCombined": {
"type": "boolean"
},
"validationAlgorithms": {
"properties": {
"des": {
"type": "boolean"
},
"visa": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"pinFormats",
"presentationAlgorithms",
"display",
"idcConnect",
"validationAlgorithms",
"pinCanPersistAfterUse",
"typeCombined",
"setPinblockDataRequired",
"pinBlockAttributes"
],
"type": "object"
},
"PinPad.PinBlock": {
"properties": {
"cryptoMethod": {
"enum": [
"ecb",
"cbc",
"cfb",
"ofb",
"ctr",
"xts",
"rsaesPkcs1V15",
"rsaesOaep"
],
"type": "string"
},
"customerData": {
"pattern": "^[0-9a-fA-F]{2,}$",
"type": "string"
},
"format": {
"enum": [
"ibm3624",
"ansi",
"iso0",
"iso1",
"eci2",
"eci3",
"visa",
"diebold",
"dieboldCo",
"visa3",
"banksys",
"emv",
"iso3",
"ap",
"iso4"
],
"type": "string"
},
"key": {
"type": "string"
},
"padding": {
"maximum": 15,
"minimum": 0,
"type": "integer"
},
"secondEncKey": {
"type": "string"
},
"xorData": {
"pattern": "^[0-9a-fA-F]{2,}$",
"type": "string"
}
},
"required": [
"customerData",
"xorData",
"padding",
"format",
"pinBlockAttributes"
]
},
"PinPad.PinBlockAttribute": {
"patternProperties": {
"^P0$": {
"patternProperties": {
"^[ADRT]$": {
"patternProperties": {
"^E$": {
"properties": {
"cryptoMethod": {
"properties": {
"cbc": {
"type": "boolean"
},
"cfb": {
"type": "boolean"
},
"ctr": {
"type": "boolean"
},
"ecb": {
"type": "boolean"
},
"ofb": {
"type": "boolean"
},
"rsaesOaep": {
"type": "boolean"
},
"rsaesPkcs1V15": {
"type": "boolean"
},
"xts": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"cryptoMethod"
],
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"Printer.Capabilities": {
"properties": {
"acceptMedia": {
"type": "boolean"
},
"autoRetractPeriod": {
"type": "integer"
},
"backImageColorFormat": {
"properties": {
"binary": {
"type": "boolean"
},
"full": {
"type": "boolean"
},
"grayScale": {
"type": "boolean"
}
},
"type": "object"
},
"codelineFormat": {
"properties": {
"cmc7": {
"type": "boolean"
},
"e13b": {
"type": "boolean"
},
"ocr": {
"type": "boolean"
}
},
"type": "object"
},
"coercivityType": {
"properties": {
"auto": {
"type": "boolean"
},
"high": {
"type": "boolean"
},
"low": {
"type": "boolean"
}
},
"type": "object"
},
"control": {
"properties": {
"alarm": {
"type": "boolean"
},
"clearBuffer": {
"type": "boolean"
},
"cut": {
"type": "boolean"
},
"eject": {
"type": "boolean"
},
"ejectToTransport": {
"type": "boolean"
},
"expel": {
"type": "boolean"
},
"flush": {
"type": "boolean"
},
"pageBackward": {
"type": "boolean"
},
"pageForward": {
"type": "boolean"
},
"park": {
"type": "boolean"
},
"partialCut": {
"type": "boolean"
},
"perforate": {
"type": "boolean"
},
"retract": {
"type": "boolean"
},
"rotate180": {
"type": "boolean"
},
"skip": {
"type": "boolean"
},
"stack": {
"type": "boolean"
},
"stamp": {
"type": "boolean"
},
"turnMedia": {
"type": "boolean"
}
},
"type": "object"
},
"controlPassbook": {
"properties": {
"closeBackward": {
"type": "boolean"
},
"closeForward": {
"type": "boolean"
},
"turnBackward": {
"type": "boolean"
},
"turnForward": {
"type": "boolean"
}
},
"type": "object"
},
"dispensePaper": {
"type": "boolean"
},
"extents": {
"properties": {
"horizontal": {
"type": "boolean"
},
"vertical": {
"type": "boolean"
}
},
"type": "object"
},
"frontImageColorFormat": {
"properties": {
"binary": {
"type": "boolean"
},
"full": {
"type": "boolean"
},
"grayscale": {
"type": "boolean"
}
},
"type": "object"
},
"imageSource": {
"properties": {
"codeLine": {
"type": "boolean"
},
"imageBack": {
"type": "boolean"
},
"imageFront": {
"type": "boolean"
}
},
"type": "object"
},
"imageType": {
"properties": {
"bmp": {
"type": "boolean"
},
"jpg": {
"type": "boolean"
},
"tif": {
"type": "boolean"
},
"wmf": {
"type": "boolean"
}
},
"type": "object"
},
"maxMediaOnStacker": {
"minimum": 0,
"type": "integer"
},
"maxRetract": {
"items": {
"minimum": 0,
"type": "integer"
},
"type": "array"
},
"mediaPresented": {
"type": "boolean"
},
"mediaTaken": {
"type": "boolean"
},
"multiPage": {
"type": "boolean"
},
"osPrinter": {
"type": "string"
},
"paperSources": {
"$ref": "#/2021-01/Printer.PaperSources"
},
"printSides": {
"enum": [
"notSupported",
"single",
"dual"
],
"type": "string"
},
"readForm": {
"properties": {
"barcode": {
"type": "boolean"
},
"micr": {
"type": "boolean"
},
"msf": {
"type": "boolean"
},
"ocr": {
"type": "boolean"
},
"pageMark": {
"type": "boolean"
},
"readEmptyLine": {
"type": "boolean"
},
"readImage": {
"type": "boolean"
}
},
"type": "object"
},
"resolution": {
"properties": {
"high": {
"type": "boolean"
},
"low": {
"type": "boolean"
},
"medium": {
"type": "boolean"
},
"veryHigh": {
"type": "boolean"
}
},
"type": "object"
},
"retractBins": {
"minimum": 0,
"type": "integer"
},
"retractToTransport": {
"type": "boolean"
},
"type": {
"properties": {
"document": {
"type": "boolean"
},
"journal": {
"type": "boolean"
},
"passbook": {
"type": "boolean"
},
"receipt": {
"type": "boolean"
},
"scanner": {
"type": "boolean"
}
},
"type": "object"
},
"writeForm": {
"properties": {
"barcode": {
"type": "boolean"
},
"graphics": {
"type": "boolean"
},
"micr": {
"type": "boolean"
},
"msf": {
"type": "boolean"
},
"ocr": {
"type": "boolean"
},
"stamp": {
"type": "boolean"
},
"text": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"Printer.FieldFail": {
"properties": {
"failure": {
"enum": [
"required",
"staticOverwrite",
"overflow",
"notFound",
"notRead",
"notWrite",
"hwerror",
"notSupported",
"graphic"
],
"type": "string"
},
"fieldName": {
"type": "string"
},
"formName": {
"type": "string"
}
},
"type": "object"
},
"Printer.Image": {
"properties": {
"data": {
"contentEncoding": "base64",
"pattern": "^[A-Za-z0-9+/]+={0,2}$",
"type": "string"
},
"status": {
"enum": [
"ok",
"notSupported",
"missing"
],
"type": "string"
}
},
"type": "object"
},
"Printer.PaperSource": {
"pattern": "^upper$|^lower$|^external$|^aux$|^aux2$|^park$|^[a-zA-Z]([a-zA-Z0-9]*)$",
"type": "string"
},
"Printer.PaperSources": {
"patternProperties": {
"^[a-zA-Z]([a-zA-Z0-9]*)$": {
"type": "boolean"
}
},
"properties": {
"aux": {
"type": "boolean"
},
"aux2": {
"type": "boolean"
},
"external": {
"type": "boolean"
},
"lower": {
"type": "boolean"
},
"park": {
"type": "boolean"
},
"upper": {
"type": "boolean"
}
},
"type": "object"
},
"Printer.PaperSupply": {
"enum": [
"notSupported",
"unknown",
"full",
"low",
"out",
"jammed"
],
"type": "string"
},
"Printer.PaperType": {
"enum": [
"unknown",
"single",
"dual"
],
"type": "string"
},
"Printer.Status": {
"properties": {
"blackMarkMode": {
"enum": [
"notSupported",
"unknown",
"on",
"off"
],
"type": "string"
},
"ink": {
"enum": [
"notSupported",
"unknown",
"full",
"low",
"out"
],
"type": "string"
},
"lamp": {
"enum": [
"notSupported",
"unknown",
"ok",
"fading",
"inop"
],
"type": "string"
},
"media": {
"enum": [
"notSupported",
"unknown",
"present",
"notPresent",
"jammed",
"entering",
"retracted"
],
"type": "string"
},
"mediaOnStacker": {
"type": "integer"
},
"paper": {
"additionalProperties": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"properties": {
"aux": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"aux2": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"external": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"lower": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"park": {
"$ref": "#/2021-01/Printer.PaperSupply"
},
"upper": {
"$ref": "#/2021-01/Printer.PaperSupply"
}
},
"type": "object"
},
"paperType": {
"additionalProperties": {
"$ref": "#/2021-01/Printer.PaperType"
},
"properties": {
"aux": {
"$ref": "#/2021-01/Printer.PaperType"
},
"aux2": {
"$ref": "#/2021-01/Printer.PaperType"
},
"external": {
"$ref": "#/2021-01/Printer.PaperType"
},
"lower": {
"$ref": "#/2021-01/Printer.PaperType"
},
"park": {
"$ref": "#/2021-01/Printer.PaperType"
},
"upper": {
"$ref": "#/2021-01/Printer.PaperType"
}
},
"type": "object"
},
"retractBins": {
"items": {
"properties": {
"count": {
"minimum": 0,
"type": "integer"
},
"state": {
"enum": [
"unknown",
"ok",
"full",
"high",
"missing"
],
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"toner": {
"enum": [
"notSupported",
"unknown",
"full",
"low",
"out"
],
"type": "string"
}
},
"type": "object"
},
"ServicePublisher.Service": {
"properties": {
"serviceURI": {
"format": "uri",
"type": "string"
}
},
"required": [
"serviceURI"
],
"type": "object"
},
"ServicePublisher.Services": {
"properties": {
"services": {
"items": {
"$ref": "#/2021-01/ServicePublisher.Service"
},
"type": "array"
},
"vendorName": {
"type": "string"
}
},
"type": "object"
},
"Storage.Capacity": {
"minimum": 0,
"type": "integer"
},
"Storage.Error": {
"properties": {
"failure": {
"enum": [
"empty",
"error",
"full",
"locked",
"invalid",
"config",
"notConfigured"
],
"type": "string"
},
"unit": {
"$ref": "#/2021-01/Storage.SingleStorageUnit"
}
},
"type": "object"
},
"Storage.Id": {
"pattern": "^.{1,5}$",
"type": "string"
},
"Storage.PositionName": {
"type": "string"
},
"Storage.ReplenishmentStatusEnum": {
"enum": [
"ok",
"full",
"high",
"low",
"empty"
],
"type": "string"
},
"Storage.SerialNumber": {
"type": "string"
},
"Storage.SetStorage": {
"properties": {
"storage": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/Storage.SetStorageUnit"
}
},
"type": "object"
}
}
},
"Storage.SetStorageUnit": {
"properties": {
"card": {
"$ref": "#/2021-01/CardReader.StorageSet"
},
"cash": {
"$ref": "#/2021-01/CashManagement.StorageSetCash"
}
},
"type": "object"
},
"Storage.SingleStorageUnit": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/Storage.StorageUnit"
}
}
},
"Storage.Status": {
"enum": [
"ok",
"inoperative",
"missing",
"notConfigured",
"manipulated"
],
"type": "string"
},
"Storage.Storage": {
"properties": {
"storage": {
"patternProperties": {
"^unit[0-9A-Za-z]+$": {
"$ref": "#/2021-01/Storage.StorageUnit"
}
},
"type": "object"
}
}
},
"Storage.StorageUnit": {
"properties": {
"capacity": {
"$ref": "#/2021-01/Storage.Capacity"
},
"card": {
"$ref": "#/2021-01/CardReader.Storage"
},
"cash": {
"$ref": "#/2021-01/CashManagement.StorageCash"
},
"id": {
"$ref": "#/2021-01/Storage.Id"
},
"positionName": {
"$ref": "#/2021-01/Storage.PositionName"
},
"serialNumber": {
"$ref": "#/2021-01/Storage.SerialNumber"
},
"status": {
"$ref": "#/2021-01/Storage.Status"
}
},
"required": [
"status"
],
"type": "object"
},
"Storage.UnitName": {
"pattern": "^unit[0-9A-Za-z]+$",
"type": "string"
},
"TextTerminal.ActiveCommandKeys": {
"patternProperties": {
"^(enter|cancel|clear|backspace|help|doubleZero|tripleZero|arrowUp|arrowDown|arrowLeft|arrowRight|fdk(0[1-9]|[12][0-9]|3[0-2])|oem[A-Za-z0-9]*)$": {
"$ref": "#/2021-01/TextTerminal.Key"
}
},
"type": "object"
},
"TextTerminal.AllCommandKeysEnum": {
"pattern": "^(enter|cancel|clear|backspace|help|doubleZero|tripleZero|arrowUp|arrowDown|arrowLeft|arrowRight|fdk(0[1-9]|[12][0-9]|3[0-2])|oem[A-Za-z0-9]*)$",
"type": "string"
},
"TextTerminal.Capabilities": {
"properties": {
"cursor": {
"type": "boolean"
},
"forms": {
"type": "boolean"
},
"keyLock": {
"type": "boolean"
},
"resolutions": {
"items": {
"$ref": "#/2021-01/TextTerminal.Resolution"
},
"type": "array"
},
"type": {
"enum": [
"fixed",
"removable"
],
"type": "string"
}
},
"required": [
"type",
"resolutions",
"keyLock",
"displayLight",
"cursor",
"forms"
],
"type": "object"
},
"TextTerminal.FieldDetails": {
"properties": {
"access": {
"properties": {
"read": {
"type": "boolean"
},
"write": {
"type": "boolean"
}
},
"type": "object"
},
"class": {
"enum": [
"static",
"optional",
"required"
],
"type": "string"
},
"format": {
"type": "string"
},
"overflow": {
"enum": [
"terminate",
"truncate",
"overwrite"
],
"type": "string"
},
"type": {
"enum": [
"text",
"invisible",
"password"
],
"type": "string"
}
},
"type": "object"
},
"TextTerminal.Key": {
"properties": {
"terminate": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"TextTerminal.Modes": {
"enum": [
"relative",
"absolute"
],
"type": "string"
},
"TextTerminal.Resolution": {
"properties": {
"sizeX": {
"minimum": 0,
"type": "integer"
},
"sizeY": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"TextTerminal.Status": {
"properties": {
"displaySizeX": {
"minimum": 0,
"type": "integer"
},
"displaySizeY": {
"minimum": 0,
"type": "integer"
},
"keyLock": {
"enum": [
"on",
"off",
"notAvailable"
],
"type": "string"
},
"keyboard": {
"enum": [
"on",
"off",
"notAvailable"
],
"type": "string"
}
},
"required": [
"keyboard",
"keyLock",
"displaySizeX",
"displaySizeY"
]
},
"VendorApplication.ActiveInterface": {
"properties": {
"activeInterface": {
"enum": [
"consumer",
"operator"
],
"type": "string"
}
},
"required": [
"activeInterface"
],
"type": "object"
},
"VendorApplication.Capabilities": {
"properties": {
"supportedAccessLevels": {
"properties": {
"accessNotSupported": {
"type": "boolean"
},
"basic": {
"type": "boolean"
},
"full": {
"type": "boolean"
},
"intermediate": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"VendorApplication.Status": {
"properties": {
"accessLevel": {
"enum": [
"notActive",
"basic",
"intermediate",
"full"
],
"type": "string"
}
},
"type": "object"
},
"VendorMode.Status": {
"properties": {
"device": {
"enum": [
"online",
"offline"
],
"type": "string"
},
"service": {
"enum": [
"enterPending",
"active",
"exitPending",
"inactive"
],
"type": "string"
}
},
"type": "object"
}
}
}
},
"$id": "https://xfs4iot.com/2021-01/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"if": {
"properties": {
"header": {
"properties": {
"type": {
"const": "acknowledge"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Acknowledge/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "ServicePublisher.GetServices"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "ServicePublisher.GetServices"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/ServicePublisher.GetServicesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "ServicePublisher.ServiceDetailEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/ServicePublisher.ServiceDetailEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Status"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Status"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.StatusCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Capabilities"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Capabilities"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.CapabilitiesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.SetVersions"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.SetVersionsCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.SetVersions"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Cancel"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.CancelCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.Cancel"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.CancelCommandCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.PowerSaveControl"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.PowerSaveControlCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.PowerSaveControl"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.SetTransactionState"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.SetTransactionStateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.SetTransactionState"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.GetTransactionState"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.GetTransactionState"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.GetTransactionStateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.GetCommandNonce"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.GetCommandNonce/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.GetCommandNonce"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.GetCommandNonceCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.ClearCommandNonce"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.ClearCommandNonce/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.ClearCommandNonce"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.ClearCommandNonceCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.StatusChangedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.StatusChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.ErrorEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.ErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Common.NonceClearedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.NonceClearedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.QueryIFMIdentifier"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.QueryIFMIdentifier"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.QueryIFMIdentifierCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessQueryApplications"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessQueryApplications"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessQueryApplicationsCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ReadRawData"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ReadRawDataCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ReadRawData"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ReadRawDataCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.InsertCardEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.InsertCardEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.MediaInsertedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MediaInsertedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.MediaRemovedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MediaRemovedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.InvalidMediaEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.InvalidMediaEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.TrackDetectedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.TrackDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.WriteRawData"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.WriteRawDataCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.WriteRawData"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.WriteRawDataCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.Move"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MoveCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.Move"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MoveCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageThresholdEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.SetKey"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.SetKeyCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.SetKey"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.SetKeyCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ChipIO"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ChipIOCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ChipIO"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ChipIOCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ResetCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ResetCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.MediaDetectedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MediaDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ChipPower"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ChipPowerCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.ChipPower"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.ChipPowerCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessConfigure"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessConfigureCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessConfigure"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessConfigureCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessPerformTransaction"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessPerformTransactionCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessPerformTransaction"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessPerformTransactionCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessReadStatusEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessReadStatusEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessIssuerUpdate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessIssuerUpdateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.EMVClessIssuerUpdate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.EMVClessIssuerUpdateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.MediaRemovedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.MediaRemovedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CardReader.CardActionEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CardReader.CardActionEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetBankNoteTypes"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetBankNoteTypes"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetBankNoteTypesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetTellerInfo"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetTellerInfoCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetTellerInfo"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetTellerInfoCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SetTellerInfo"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.SetTellerInfoCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SetTellerInfo"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.SetTellerInfoCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.TellerInfoChangedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.TellerInfoChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetItemInfo"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetItemInfoCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetItemInfo"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetItemInfoCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetClassificationList"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.GetClassificationList"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.GetClassificationListCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SetClassificationList"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.SetClassificationListCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SetClassificationList"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.CloseShutter"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.CloseShutterCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.CloseShutter"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.CloseShutterCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.OpenShutter"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.OpenShutterCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.OpenShutter"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.OpenShutterCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsTakenEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsTakenEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsInsertedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsInsertedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsPresentedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsPresentedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.Retract"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.RetractCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.Retract"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.RetractCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageChangedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageErrorEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.NoteErrorEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.NoteErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.InfoAvailableEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.InfoAvailableEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.IncompleteRetractEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.IncompleteRetractEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ResetCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ResetCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.MediaDetectedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.MediaDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.OpenSafeDoor"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.OpenSafeDoor"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.OpenSafeDoorCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.CalibrateCashUnit"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.CalibrateCashUnitCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.CalibrateCashUnit"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.CalibrateCashUnitCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SafeDoorOpenEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.SafeDoorOpenEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.SafeDoorClosedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.SafeDoorClosedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsTakenEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsTakenEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsInsertedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsInsertedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ItemsPresentedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ItemsPresentedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashManagement.ShutterStatusChangedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.ShutterStatusChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetMixTypes"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetMixTypes"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.GetMixTypesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetMixTable"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.GetMixTableCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetMixTable"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.GetMixTableCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetPresentStatus"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.GetPresentStatusCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.GetPresentStatus"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.GetPresentStatusCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Denominate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.DenominateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Denominate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.DenominateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Dispense"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.DispenseCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Dispense"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.DispenseCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.DelayedDispenseEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.DelayedDispenseEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.StartDispenseEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.StartDispenseEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.IncompleteDispenseEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.IncompleteDispenseEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Present"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.PresentCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Present"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.PresentCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Reject"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Reject"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.RejectCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.SetMixTable"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.SetMixTableCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.SetMixTable"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.SetMixTableCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.TestCashUnits"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.TestCashUnitsCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.TestCashUnits"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.TestCashUnitsCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Count"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.CountCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.Count"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.CountCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.PrepareDispense"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashDispenser.PrepareDispenseCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashDispenser.PrepareDispense"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetCashInStatus"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetCashInStatus"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetCashInStatusCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetPositionCapabilities"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetPositionCapabilities"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetPositionCapabilitiesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetReplenishTarget"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetReplenishTargetCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetReplenishTarget"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetReplenishTargetCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetDeviceLockStatus"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetDeviceLockStatus"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetDeviceLockStatusCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetDepleteSource"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetDepleteSourceCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetDepleteSource"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetDepleteSourceCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetPresentStatus"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.GetPresentStatus"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.GetPresentStatusCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInStart"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashInStartCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInStart"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashInStartCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashIn"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashIn"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashInCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.InputRefuseEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.InputRefuseEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.SubCashInEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.SubCashInEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.InsertItemsEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.InsertItemsEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInEnd"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInEnd"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashInEndCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInRollback"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashInRollback"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashInRollbackCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.ConfigureNoteTypes"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ConfigureNoteTypesCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.ConfigureNoteTypes"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ConfigureNoteTypesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CreateSignature"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CreateSignature"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CreateSignatureCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.ConfigureNoteReader"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ConfigureNoteReaderCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.ConfigureNoteReader"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ConfigureNoteReaderCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CompareSignature"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CompareSignatureCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CompareSignature"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CompareSignatureCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.Replenish"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ReplenishCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.Replenish"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.ReplenishCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.IncompleteReplenishEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.IncompleteReplenishEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashUnitCount"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashUnitCountCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.CashUnitCount"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.CashUnitCountCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.DeviceLockControl"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.DeviceLockControlCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.DeviceLockControl"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.DeviceLockControlCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.PresentMedia"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.PresentMediaCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.PresentMedia"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.PresentMediaCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.Deplete"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.DepleteCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.Deplete"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.DepleteCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.IncompleteDepleteEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.IncompleteDepleteEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.PreparePresent"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.PreparePresentCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "CashAcceptor.PreparePresent"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashAcceptor.PreparePresentCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GetKeyDetail"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GetKeyDetailCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GetKeyDetail"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GetKeyDetailCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.Initialization"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.InitializationCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.Initialization"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.InitializationCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.DeriveKey"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.DeriveKeyCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.DeriveKey"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.DeriveKeyCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ImportKey"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ImportKeyCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ImportKey"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ImportKeyCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.DeleteKey"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.DeleteKeyCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.DeleteKey"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.DeleteKeyCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ExportRSAIssuerSignedItem"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ExportRSAIssuerSignedItemCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ExportRSAIssuerSignedItem"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ExportRSAIssuerSignedItemCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GenerateRSAKeyPair"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GenerateRSAKeyPairCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GenerateRSAKeyPair"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GenerateRSAKeyPairCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ExportRSADeviceSignedItem"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ExportRSADeviceSignedItemCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ExportRSADeviceSignedItem"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ExportRSADeviceSignedItemCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GetCertificate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GetCertificateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GetCertificate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GetCertificateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ReplaceCertificate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ReplaceCertificateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.ReplaceCertificate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.ReplaceCertificateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.StartKeyExchange"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.StartKeyExchange"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.StartKeyExchangeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GenerateKCV"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GenerateKCVCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.GenerateKCV"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.GenerateKCVCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.LoadCertificate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.LoadCertificateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.LoadCertificate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.LoadCertificateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.StartAuthenticate"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.StartAuthenticateCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.StartAuthenticate"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.StartAuthenticateCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.InitializedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.InitializedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.IllegalKeyAccessEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.IllegalKeyAccessEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.CertificateChangeEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.CertificateChangeEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.GenerateRandom"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.GenerateRandomCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.GenerateRandom"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.GenerateRandomCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.CryptoData"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.CryptoDataCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.CryptoData"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.CryptoDataCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.DUKPTKSNEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.DUKPTKSNEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.GenerateAuthentication"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.GenerateAuthenticationCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.GenerateAuthentication"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.GenerateAuthenticationCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.VerifyAuthentication"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.VerifyAuthenticationCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.VerifyAuthentication"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.VerifyAuthenticationCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.Digest"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.DigestCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Crypto.Digest"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Crypto.DigestCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.GetLayout"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.GetLayoutCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.GetLayout"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.GetLayoutCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.PinEntry"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.PinEntryCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.PinEntry"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.PinEntryCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.KeyEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.KeyEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.EnterDataEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.EnterDataEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.LayoutEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.LayoutEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.DataEntry"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.DataEntryCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.DataEntry"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.DataEntryCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.SecureKeyEntry"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.SecureKeyEntryCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.SecureKeyEntry"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.SecureKeyEntryCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.KeypressBeep"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.KeypressBeepCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.KeypressBeep"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.DefineLayout"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.DefineLayoutCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Keyboard.DefineLayout"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Keyboard.DefineLayoutCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.GetQueryPCIPTSDeviceId"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.GetQueryPCIPTSDeviceId"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.GetQueryPCIPTSDeviceIdCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.LocalDES"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.LocalDESCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.LocalDES"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.LocalDESCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "KeyManagement.IllegalKeyAccessEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/KeyManagement.IllegalKeyAccessEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.LocalVisa"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.LocalVisaCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.LocalVisa"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.LocalVisaCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.PresentIDC"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.PresentIDCCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.PresentIDC"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.PresentIDCCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.MaintainPin"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.MaintainPinCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.MaintainPin"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.SetPinBlockData"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.SetPinBlockDataCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.SetPinBlockData"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.GetPinBlock"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.GetPinBlockCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "PinPad.GetPinBlock"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/PinPad.GetPinBlockCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetFormList"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetFormList"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetFormListCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetMediaList"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetMediaList"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetMediaListCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryMedia"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryMediaCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryMedia"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryMediaCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryField"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryFieldCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetQueryField"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetQueryFieldCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetCodelineMapping"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetCodelineMappingCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.GetCodelineMapping"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.GetCodelineMappingCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ControlMedia"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ControlMediaCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ControlMedia"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ControlMediaCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaPresentedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaPresentedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.NoMediaEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.NoMediaEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaInsertedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaInsertedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.FieldErrorEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.FieldErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.FieldWarningEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.FieldWarningEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaRejectedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaRejectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintRaw"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintRawCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintRaw"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintRawCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintNative"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintNativeCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PrintNative"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PrintNativeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaTakenEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaTakenEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PaperThresholdEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PaperThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.TonerThresholdEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.TonerThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.RetractBinThresholdEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.RetractBinThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.InkThresholdEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.InkThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaAutoRetractedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaAutoRetractedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ReadForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ReadFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ReadForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ReadFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ReadImage"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ReadImageCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ReadImage"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ReadImageCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaExtents"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaExtentsCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaExtents"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaExtentsCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ResetCount"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ResetCountCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ResetCount"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ResetCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ResetCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.RetractMedia"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.RetractMediaCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.RetractMedia"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.RetractMediaCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.DispensePaper"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.DispensePaperCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.DispensePaper"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.DispensePaperCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.LoadDefinition"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.LoadDefinitionCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.LoadDefinition"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.LoadDefinitionCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.DefinitionLoadedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.DefinitionLoadedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.SupplyReplenish"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.SupplyReplenishCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.SupplyReplenish"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ControlPassbook"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ControlPassbookCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.ControlPassbook"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.ControlPassbookCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.SetBlackMarkMode"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.SetBlackMarkModeCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.SetBlackMarkMode"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaTakenEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaTakenEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaInsertedUnsolicitedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaInsertedUnsolicitedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaPresentedUnsolicitedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaPresentedUnsolicitedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaDetectedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.RetractBinStatusEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.RetractBinStatusEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.DefinitionLoadedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.DefinitionLoadedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.MediaAutoRetractedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.MediaAutoRetractedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.RetractBinThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.RetractBinThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.PaperThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.PaperThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.TonerThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.TonerThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.LampThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.LampThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Printer.InkThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Printer.InkThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetFormList"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetFormList"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetFormListCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetQueryForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetQueryFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetQueryForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetQueryFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetQueryField"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetQueryFieldCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetQueryField"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetQueryFieldCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetKeyDetail"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.GetKeyDetail"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.GetKeyDetailCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Beep"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.BeepCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Beep"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.ClearScreen"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.ClearScreenCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.ClearScreen"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.SetResolution"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.SetResolutionCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.SetResolution"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.SetResolutionCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.WriteForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.WriteFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.WriteForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.WriteFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.FieldErrorEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.FieldErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.FieldWarningEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.FieldWarningEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.ReadForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.ReadFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.ReadForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.ReadFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Write"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.WriteCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Write"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.WriteCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Read"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.ReadCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Read"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.ReadCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.KeyEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.KeyEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.DefineKeys"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.DefineKeysCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.DefineKeys"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.DefineKeysCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.LoadForm"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.LoadFormCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.LoadForm"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.LoadFormCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "TextTerminal.FormLoadedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/TextTerminal.FormLoadedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "BarcodeReader.Read"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/BarcodeReader.ReadCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "BarcodeReader.Read"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/BarcodeReader.ReadCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "BarcodeReader.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "BarcodeReader.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.GetStorageInfo"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.GetStorageInfo"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.GetStorageInfoCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Read"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ReadCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Read"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ReadCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.PresentSubjectEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.PresentSubjectEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SubjectDetectedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SubjectDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.RemoveSubjectEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.RemoveSubjectEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SubjectRemovedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SubjectRemovedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.DataClearedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.DataClearedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.OrientationEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.OrientationEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Import"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ImportCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Import"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ImportCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Match"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.MatchCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Match"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.MatchCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SetMatch"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SetMatchCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SetMatch"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SetMatchCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Clear"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ClearCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Clear"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.ResetCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SetDataPersistence"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SetDataPersistenceCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SetDataPersistence"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SetDataPersistenceCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.PresentSubjectEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.PresentSubjectEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SubjectDetectedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SubjectDetectedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.RemoveSubjectEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.RemoveSubjectEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.SubjectRemovedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.SubjectRemovedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.DataClearedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.DataClearedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Biometric.OrientationEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Biometric.OrientationEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.TakePicture"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Camera.TakePictureCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.TakePicture"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.InvalidDataEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Camera.InvalidDataEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.Reset"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.Reset"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Camera.MediaThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Camera.MediaThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Lights.SetLight"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Lights.SetLightCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Lights.SetLight"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Lights.SetLightCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.GetAutoStartUpTime"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.GetAutoStartUpTime"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.GetAutoStartUpTimeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.ClearAutoStartUpTime"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.ClearAutoStartUpTime"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.ClearAutoStartUpTimeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.Register"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.RegisterCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.Register"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.RegisterCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.SetAuxiliaries"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.SetAuxiliariesCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.SetAuxiliaries"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.SetAuxiliariesCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.AuxiliaryStatusEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.AuxiliaryStatusEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.SetAutoStartUpTime"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.SetAutoStartUpTimeCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.SetAutoStartUpTime"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.SetAutoStartUpTimeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Auxiliaries.AuxiliaryStatusEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Auxiliaries.AuxiliaryStatusEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.GetStorage"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.GetStorage"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.GetStorageCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.SetStorage"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.SetStorageCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.SetStorage"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.SetStorageCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StartExchange"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StartExchange"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StartExchangeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.EndExchange"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.EndExchange"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/CashManagement.EndExchangeCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageChangedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageThresholdEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageThresholdEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "Storage.StorageErrorEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Storage.StorageErrorEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.Register"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.RegisterCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.Register"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.EnterModeRequest"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.EnterModeRequestCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.EnterModeRequest"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.EnterModeAcknowledge"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.EnterModeAcknowledge"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeRequest"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.EnterModeRequestCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeRequest"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.EnterModeRequestCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeRequestEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ExitModeRequestEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ModeEnteredEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ModeEnteredEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ModeExitedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ModeExitedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeAcknowledge"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeAcknowledge"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.EnterModeRequestEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.EnterModeRequestEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ExitModeRequestEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ExitModeRequestEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ModeEnteredEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ModeEnteredEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorMode.ModeExitedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorMode.ModeExitedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.StartLocalApplication"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.StartLocalApplicationCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.StartLocalApplication"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.GetActiveInterface"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Command/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.GetActiveInterface"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.GetActiveInterfaceCompletion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.SetActiveInterface"
},
"type": {
"const": "command"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.SetActiveInterfaceCommand/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.SetActiveInterface"
},
"type": {
"const": "completion"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/Common.Completion/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.InterfaceChangedEvent"
},
"type": {
"const": "event"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.InterfaceChangedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.VendorAppExitedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.VendorAppExitedEvent/1.0"
}
}
}
},
{
"if": {
"properties": {
"header": {
"properties": {
"name": {
"const": "VendorApplication.InterfaceChangedEvent"
},
"type": {
"const": "unsolicited"
},
"version": {
"const": "1.0"
}
}
}
}
},
"then": {
"properties": {
"payload": {
"$ref": "/messages#/VendorApplication.InterfaceChangedEvent/1.0"
}
}
}
}
]
} | MIT | en |
quochungtran/MLOps-NLP-with-disaster-tweets | 9cd751b982dd95ce394af889efa21d9706c9c951 | 2024-03-15T06:28:09 | helm/nginx-ingress/values.schema.json | 21 | 2024-05-27T06:44:09.259162Z | {
"$schema": "https://json-schema.org/draft/2019-09/schema",
"default": {},
"examples": [
{
"controller": {
"affinity": {},
"appprotect": {
"enable": false,
"logLevel": "fatal"
},
"appprotectdos": {
"debug": false,
"enable": false,
"maxDaemons": 0,
"maxWorkers": 0,
"memory": 0
},
"config": {
"annotations": {},
"entries": {},
"name": ""
},
"customConfigMap": "",
"customPorts": [],
"defaultTLS": {
"cert": "",
"key": "",
"secret": ""
},
"disableIPV6": false,
"enableCertManager": false,
"enableCustomResources": true,
"enableExternalDNS": false,
"enableLatencyMetrics": false,
"enableOIDC": false,
"enablePreviewPolicies": false,
"enableSnippets": false,
"enableTLSPassthrough": false,
"env": [],
"extraContainers": [],
"globalConfiguration": {
"create": false,
"spec": {}
},
"healthStatus": false,
"healthStatusURI": "/nginx-health",
"hostNetwork": false,
"image": {
"digest": "",
"pullPolicy": "IfNotPresent",
"repository": "nginx/nginx-ingress",
"tag": "2.3.1"
},
"includeYear": false,
"ingressClass": "nginx",
"initContainers": [],
"kind": "deployment",
"lifecycle": {},
"logLevel": 1,
"minReadySeconds": 0,
"name": "",
"nginxDebug": false,
"nginxReloadTimeout": 60000,
"nginxStatus": {
"allowCidrs": "127.0.0.1",
"enable": true,
"port": 8080
},
"nginxplus": false,
"nodeSelector": {},
"pod": {
"annotations": {},
"extraLabels": {}
},
"podDisruptionBudget": {
"annotations": {},
"enabled": false,
"minAvailable": 0,
"minUnavailable": 0
},
"priorityClassName": "",
"readOnlyRootFilesystem": false,
"readyStatus": {
"enable": true,
"initialDelaySeconds": 0,
"port": 8081
},
"replicaCount": 1,
"reportIngressStatus": {
"annotations": {},
"enable": true,
"enableLeaderElection": true,
"externalService": "",
"ingressLink": "",
"leaderElectionLockName": ""
},
"resources": {
"requests": {
"cpu": "100m",
"memory": "128Mi"
}
},
"service": {
"allocateLoadBalancerNodePorts": false,
"annotations": {},
"create": true,
"customPorts": [],
"externalIPs": [],
"externalTrafficPolicy": "Local",
"extraLabels": {},
"httpPort": {
"enable": true,
"nodePort": "",
"port": 80,
"targetPort": 80
},
"httpsPort": {
"enable": true,
"nodePort": "",
"port": 443,
"targetPort": 443
},
"ipFamilies": [],
"ipFamilyPolicy": "",
"loadBalancerIP": "",
"loadBalancerSourceRanges": [],
"type": "LoadBalancer"
},
"serviceAccount": {
"imagePullSecretName": "",
"name": ""
},
"serviceMonitor": {
"create": false,
"endpoints": {},
"labels": {},
"selectorMatchLabels": {}
},
"setAsDefaultIngress": false,
"strategy": {},
"terminationGracePeriodSeconds": 30,
"tolerations": [],
"topologySpreadConstraints": {},
"volumeMounts": [],
"volumes": [],
"watchNamespace": "",
"wildcardTLS": {
"cert": "",
"key": "",
"secret": ""
}
},
"nginxServiceMesh": {
"enable": false,
"enableEgress": false
},
"prometheus": {
"create": true,
"port": 9113,
"scheme": "http",
"secret": ""
},
"rbac": {
"create": true
},
"serviceInsight": {
"create": true,
"port": 9114,
"scheme": "http",
"secret": ""
}
}
],
"properties": {
"controller": {
"default": {},
"examples": [
{
"affinity": {},
"appprotect": {
"enable": false,
"logLevel": "fatal"
},
"appprotectdos": {
"debug": false,
"enable": false,
"maxDaemons": 0,
"maxWorkers": 0,
"memory": 0
},
"config": {
"annotations": {},
"entries": {},
"name": ""
},
"customConfigMap": "",
"customPorts": [],
"defaultTLS": {
"cert": "",
"key": "",
"secret": ""
},
"disableIPV6": false,
"enableCertManager": false,
"enableCustomResources": true,
"enableExternalDNS": false,
"enableLatencyMetrics": false,
"enableOIDC": false,
"enablePreviewPolicies": false,
"enableSnippets": false,
"enableTLSPassthrough": false,
"env": [],
"extraContainers": [],
"globalConfiguration": {
"create": false,
"spec": {}
},
"healthStatus": false,
"healthStatusURI": "/nginx-health",
"hostNetwork": false,
"image": {
"digest": "",
"pullPolicy": "IfNotPresent",
"repository": "nginx/nginx-ingress",
"tag": "2.3.1"
},
"includeYear": false,
"ingressClass": "nginx",
"initContainers": [],
"kind": "deployment",
"lifecycle": {},
"logLevel": 1,
"minReadySeconds": 0,
"name": "",
"nginxDebug": false,
"nginxReloadTimeout": 60000,
"nginxStatus": {
"allowCidrs": "127.0.0.1",
"enable": true,
"port": 8080
},
"nginxplus": false,
"nodeSelector": {},
"pod": {
"annotations": {},
"extraLabels": {}
},
"priorityClassName": "",
"readOnlyRootFilesystem": false,
"readyStatus": {
"enable": true,
"initialDelaySeconds": 0,
"port": 8081
},
"replicaCount": 1,
"reportIngressStatus": {
"annotations": {},
"enable": true,
"enableLeaderElection": true,
"externalService": "",
"ingressLink": "",
"leaderElectionLockName": ""
},
"resources": {
"requests": {
"cpu": "100m",
"memory": "128Mi"
}
},
"service": {
"allocateLoadBalancerNodePorts": false,
"annotations": {},
"create": true,
"customPorts": [],
"externalIPs": [],
"externalTrafficPolicy": "Local",
"extraLabels": {},
"httpPort": {
"enable": true,
"port": 80,
"targetPort": 80
},
"httpsPort": {
"enable": true,
"port": 443,
"targetPort": 443
},
"ipFamilies": [],
"ipFamilyPolicy": "",
"loadBalancerIP": "",
"loadBalancerSourceRanges": [],
"type": "LoadBalancer"
},
"serviceAccount": {
"imagePullSecretName": "",
"name": ""
},
"serviceMonitor": {
"create": false,
"endpoints": {},
"labels": {},
"selectorMatchLabels": {}
},
"setAsDefaultIngress": false,
"strategy": {},
"terminationGracePeriodSeconds": 30,
"tolerations": [],
"topologySpreadConstraints": {},
"volumeMounts": [],
"volumes": [],
"watchNamespace": "",
"wildcardTLS": {
"cert": "",
"key": "",
"secret": ""
}
}
],
"properties": {
"affinity": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Affinity",
"default": {},
"title": "The affinity Schema",
"type": "object"
},
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"appprotect": {
"default": {},
"examples": [
{
"enable": true,
"logLevel": "fatal"
}
],
"properties": {
"enable": {
"default": false,
"examples": [
false,
true
],
"title": "Enable the App Protect WAF module in the Ingress Controller",
"type": "boolean"
},
"logLevel": {
"default": "",
"enum": [
"fatal",
"error",
"warn",
"info",
"debug",
"trace"
],
"examples": [
"fatal",
"error",
"warn",
"info",
"debug",
"trace"
],
"title": "The logLevel for App Protect WAF",
"type": "string"
}
},
"required": [
"enable"
],
"title": "The App Protect WAF Schema",
"type": "object"
},
"appprotectdos": {
"default": {},
"examples": [
{
"debug": false,
"enable": true,
"maxDaemons": 0,
"maxWorkers": 0,
"memory": 0
}
],
"properties": {
"debug": {
"default": false,
"examples": [
false,
true
],
"title": "debugging for App Protect DoS",
"type": "boolean"
},
"enable": {
"default": false,
"examples": [
false,
true
],
"title": "Enable the App Protect DoS module in the Ingress Controller",
"type": "boolean"
},
"maxDaemons": {
"default": 0,
"examples": [
0
],
"title": "Max number of ADMD instances",
"type": "integer"
},
"maxWorkers": {
"default": 0,
"examples": [
0
],
"title": "Max number of nginx processes to support",
"type": "integer"
},
"memory": {
"default": 0,
"examples": [
0
],
"title": "RAM memory size to consume in MB",
"type": "integer"
}
},
"required": [
"enable"
],
"title": "The App Protect DoS Schema",
"type": "object"
},
"config": {
"default": {},
"examples": [
{
"annotations": {},
"entries": {},
"name": ""
}
],
"properties": {
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"entries": {
"default": {},
"examples": [
{}
],
"properties": {},
"required": [],
"title": "The entries Schema",
"type": "object"
},
"name": {
"default": "",
"examples": [
""
],
"title": "The name Schema",
"type": "string"
}
},
"required": [],
"title": "The config Schema",
"type": "object"
},
"customConfigMap": {
"default": "",
"examples": [
""
],
"title": "The customConfigMap Schema",
"type": "string"
},
"customPorts": {
"default": [],
"examples": [
[
{
"containerPort": 80,
"name": "http",
"protocol": "TCP"
},
{
"containerPort": 443,
"name": "https",
"protocol": "TCP"
}
]
],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ContainerPort",
"type": "object"
},
"title": "The customPorts to expose on the NGINX Ingress Controller pod",
"type": "array"
},
"defaultTLS": {
"default": {},
"examples": [],
"properties": {
"cert": {
"default": "",
"examples": [],
"title": "The cert Schema",
"type": "string"
},
"key": {
"default": "",
"examples": [],
"title": "The key Schema",
"type": "string"
},
"secret": {
"default": "",
"examples": [
""
],
"title": "The secret Schema",
"type": "string"
}
},
"required": [],
"title": "The defaultTLS Schema",
"type": "object"
},
"disableIPV6": {
"default": false,
"examples": [
false
],
"title": "The disableIPV6",
"type": "boolean"
},
"dnsPolicy": {
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/dnsPolicy"
},
{
"enum": [
"ClusterFirstWithHostNet",
"ClusterFirst",
"Default",
"None"
]
}
],
"type": "string"
},
"enableCertManager": {
"default": false,
"examples": [
false
],
"title": "The enableCertManager",
"type": "boolean"
},
"enableCustomResources": {
"default": false,
"examples": [
true
],
"title": "The enableCustomResources",
"type": "boolean"
},
"enableExternalDNS": {
"default": false,
"examples": [
false
],
"title": "The enableExternalDNS",
"type": "boolean"
},
"enableLatencyMetrics": {
"default": false,
"examples": [
false
],
"title": "The enableLatencyMetrics",
"type": "boolean"
},
"enableOIDC": {
"default": false,
"examples": [
false
],
"title": "The enableOIDC",
"type": "boolean"
},
"enablePreviewPolicies": {
"default": false,
"examples": [
false
],
"title": "The enablePreviewPolicies",
"type": "boolean"
},
"enableSnippets": {
"default": false,
"examples": [
false
],
"title": "The enableSnippets",
"type": "boolean"
},
"enableTLSPassthrough": {
"default": false,
"examples": [
false
],
"title": "The enableTLSPassthrough",
"type": "boolean"
},
"env": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.EnvVar",
"type": "object"
},
"title": "The env Schema",
"type": "array"
},
"extraContainers": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container",
"type": "object"
},
"title": "The extraContainers Schema",
"type": "array"
},
"globalConfiguration": {
"default": {},
"examples": [
{
"create": false,
"spec": {}
}
],
"properties": {
"create": {
"default": false,
"examples": [
false
],
"title": "The create Schema",
"type": "boolean"
},
"spec": {
"default": {},
"examples": [
{}
],
"properties": {
"listeners": {
"default": [],
"items": {
"default": {},
"properties": {
"name": {
"default": "",
"examples": [
"dns-tcp"
],
"title": "The name",
"type": "string"
},
"port": {
"default": 0,
"examples": [
5353
],
"title": "The port",
"type": "integer"
},
"protocol": {
"default": "",
"examples": [
"TCP"
],
"title": "The protocol",
"type": "string"
}
},
"type": "object"
},
"title": "The listeners Schema",
"type": "array"
}
},
"required": [],
"title": "The spec Schema",
"type": "object"
}
},
"required": [
"create",
"spec"
],
"title": "The globalConfiguration Schema",
"type": "object"
},
"healthStatus": {
"default": false,
"examples": [
false
],
"title": "The healthStatus",
"type": "boolean"
},
"healthStatusURI": {
"default": "/nginx-health",
"examples": [
"/nginx-health"
],
"format": "uri-reference",
"title": "The healthStatusURI Schema",
"type": "string"
},
"hostNetwork": {
"default": false,
"examples": [
false,
true
],
"title": "The hostNetwork Schema",
"type": "boolean"
},
"image": {
"default": {},
"examples": [
{
"pullPolicy": "IfNotPresent",
"repository": "nginx/nginx-ingress",
"tag": "2.3.1"
}
],
"properties": {
"digest": {
"default": "",
"examples": [
"sha256:2710c264e8eaeb663cee63db37b75a1ac1709f63a130fb091c843a6c3a4dc572"
],
"title": "The digest of the Ingress Controller image",
"type": "string"
},
"pullPolicy": {
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container/properties/imagePullPolicy"
},
{
"enum": [
"Always",
"IfNotPresent",
"Never"
]
}
],
"default": "IfNotPresent",
"examples": [
"Always",
"IfNotPresent",
"Never"
],
"title": "The pullPolicy for the Ingress Controller image",
"type": "string"
},
"repository": {
"default": "nginx/nginx-ingress",
"examples": [
"nginx/nginx-ingress"
],
"title": "The repository of the Ingress Controller",
"type": "string"
},
"tag": {
"default": "2.3.1",
"examples": [
"2.3.1"
],
"title": "The tag of the Ingress Controller image",
"type": "string"
}
},
"required": [
"repository"
],
"title": "The image Schema",
"type": "object"
},
"includeYear": {
"default": false,
"examples": [
false
],
"title": "The includeYear",
"type": "boolean"
},
"ingressClass": {
"default": "",
"examples": [
"nginx"
],
"title": "The ingressClass",
"type": "string"
},
"initContainers": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container",
"type": "object"
},
"title": "The initContainers Schema",
"type": "array"
},
"kind": {
"default": "",
"enum": [
"deployment",
"daemonset"
],
"examples": [
"deployment",
"daemonset"
],
"title": "The kind of the Ingress Controller",
"type": "string"
},
"lifecycle": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Lifecycle",
"default": {},
"title": "The lifecycle Schema",
"type": "object"
},
"logLevel": {
"default": 1,
"enum": [
0,
1,
2,
3
],
"examples": [
1
],
"title": "The logLevel of the Ingress Controller",
"type": "integer"
},
"minReadySeconds": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.apps.v1.DeploymentSpec/properties/minReadySeconds",
"default": 0,
"title": "The minReadySeconds Schema",
"type": "integer"
},
"name": {
"default": "",
"examples": [
"controller"
],
"title": "The name of the Ingress Controller",
"type": "string"
},
"nginxDebug": {
"default": false,
"examples": [
false,
true
],
"title": "Enables debugging for NGINX",
"type": "boolean"
},
"nginxReloadTimeout": {
"default": 0,
"examples": [
60000
],
"title": "Timeout in milliseconds which the Ingress Controller will wait for a successful NGINX reload after a change or at the initial start",
"type": "integer"
},
"nginxStatus": {
"default": {},
"examples": [
{
"allowCidrs": "127.0.0.1",
"enable": true,
"port": 8080
}
],
"properties": {
"allowCidrs": {
"default": "127.0.0.1",
"examples": [
"127.0.0.1"
],
"title": "The allowCidrs",
"type": "string"
},
"enable": {
"default": false,
"examples": [
true
],
"title": "The enable",
"type": "boolean"
},
"port": {
"default": 8080,
"examples": [
8080
],
"title": "The port",
"type": "integer"
}
},
"required": [],
"title": "The nginxStatus Schema",
"type": "object"
},
"nginxplus": {
"default": false,
"examples": [
false,
true
],
"title": "Deploys the Ingress Controller for NGINX Plus",
"type": "boolean"
},
"nodeSelector": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/nodeSelector",
"default": {},
"title": "The nodeSelector Schema",
"type": "object"
},
"pod": {
"default": {},
"examples": [
{
"annotations": {},
"extraLabels": {}
}
],
"properties": {
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"extraLabels": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/labels",
"default": {},
"title": "The extraLabels Schema",
"type": "object"
}
},
"required": [],
"title": "The pod Schema",
"type": "object"
},
"podDisruptionBudget": {
"default": {},
"examples": [
{
"enable": true,
"minAvailable": 1
},
{
"enable": true,
"maxUnavailable": 1
}
],
"properties": {
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"enabled": {
"type": "boolean"
},
"maxUnavailable": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec/properties/maxUnavailable"
},
"minAvailable": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec/properties/minAvailable"
}
},
"required": [
"enabled"
],
"title": "The podDisruptionBudget Schema",
"type": "object"
},
"priorityClassName": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/priorityClassName",
"default": "",
"title": "The priorityClassName",
"type": "string"
},
"readOnlyRootFilesystem": {
"default": false,
"examples": [
false
],
"title": "The readOnlyRootFilesystem",
"type": "boolean"
},
"readyStatus": {
"default": {},
"examples": [
{
"enable": true,
"initialDelaySeconds": 0,
"port": 8081
}
],
"properties": {
"enable": {
"default": false,
"examples": [
true
],
"title": "The enable",
"type": "boolean"
},
"initialDelaySeconds": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Probe/properties/initialDelaySeconds",
"default": 0,
"type": "integer"
},
"port": {
"default": 0,
"examples": [
8081
],
"title": "The port",
"type": "integer"
}
},
"required": [],
"title": "The readyStatus",
"type": "object"
},
"replicaCount": {
"default": 1,
"examples": [
1
],
"title": "The replicaCount",
"type": "integer"
},
"reportIngressStatus": {
"default": {},
"examples": [
{
"annotations": {},
"enable": true,
"enableLeaderElection": true,
"externalService": "",
"ingressLink": "",
"leaderElectionLockName": ""
}
],
"properties": {
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"enable": {
"default": false,
"examples": [
true
],
"title": "The enable",
"type": "boolean"
},
"enableLeaderElection": {
"default": false,
"examples": [
true
],
"title": "The enableLeaderElection",
"type": "boolean"
},
"externalService": {
"default": "",
"examples": [
""
],
"title": "The externalService",
"type": "string"
},
"ingressLink": {
"default": "",
"examples": [
""
],
"title": "The ingressLink",
"type": "string"
},
"leaderElectionLockName": {
"default": "",
"examples": [
""
],
"title": "The leaderElectionLockName",
"type": "string"
}
},
"required": [
"enable"
],
"title": "The reportIngressStatus Schema",
"type": "object"
},
"resources": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ResourceRequirements",
"default": {},
"title": "The resources Schema",
"type": "object"
},
"service": {
"default": {},
"examples": [
{
"allocateLoadBalancerNodePorts": false,
"annotations": {},
"create": true,
"customPorts": [],
"externalIPs": [],
"externalTrafficPolicy": "Local",
"extraLabels": {},
"httpPort": {
"enable": true,
"port": 80,
"targetPort": 80
},
"httpsPort": {
"enable": true,
"port": 443,
"targetPort": 443
},
"ipFamilies": [],
"ipFamilyPolicy": "",
"loadBalancerIP": "",
"loadBalancerSourceRanges": [],
"name": "",
"type": "LoadBalancer"
}
],
"properties": {
"allocateLoadBalancerNodePorts": {
"default": false,
"ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/allocateLoadBalancerNodePorts",
"title": "The allocateLoadBalancerNodePorts Schema",
"type": "boolean"
},
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations",
"type": "object"
},
"create": {
"default": false,
"examples": [
true
],
"title": "The create",
"type": "boolean"
},
"customPorts": {
"default": [],
"items": {
"ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServicePort",
"type": "object"
},
"title": "The customPorts",
"type": "array"
},
"externalIPs": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/externalIPs",
"default": [],
"title": "The externalIPs",
"type": "array"
},
"externalTrafficPolicy": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/externalTrafficPolicy",
"default": "",
"title": "The externalTrafficPolicy",
"type": "string"
},
"extraLabels": {
"default": {},
"examples": [
{}
],
"properties": {},
"required": [],
"title": "The extraLabels",
"type": "object"
},
"httpPort": {
"default": {},
"examples": [
{
"enable": true,
"nodePort": "",
"port": 80,
"targetPort": 80
}
],
"properties": {
"enable": {
"default": false,
"examples": [
true
],
"title": "The enable",
"type": "boolean"
},
"nodePort": {
"default": 0,
"examples": [
443
],
"title": "The nodePort",
"type": "integer"
},
"port": {
"default": 0,
"examples": [
80
],
"title": "The port",
"type": "integer"
},
"targetPort": {
"default": 0,
"examples": [
80
],
"title": "The targetPort",
"type": "integer"
}
},
"required": [],
"title": "The httpPort",
"type": "object"
},
"httpsPort": {
"default": {},
"examples": [
{
"enable": true,
"nodePort": "",
"port": 443,
"targetPort": 443
}
],
"properties": {
"enable": {
"default": false,
"examples": [
true
],
"title": "The enable",
"type": "boolean"
},
"nodePort": {
"default": 0,
"examples": [
443
],
"title": "The nodePort",
"type": "integer"
},
"port": {
"default": 0,
"examples": [
443
],
"title": "The port",
"type": "integer"
},
"targetPort": {
"default": 0,
"examples": [
443
],
"title": "The targetPort",
"type": "integer"
}
},
"required": [],
"title": "The httpsPort",
"type": "object"
},
"ipFamilies": {
"default": [],
"ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/ipFamilies",
"title": "The ipFamilies Schema",
"type": "array"
},
"ipFamilyPolicy": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/ipFamilyPolicy",
"default": "",
"examples": [
""
],
"title": "The ipFamilyPolicy Schema",
"type": "string"
},
"loadBalancerIP": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/loadBalancerIP",
"default": "",
"title": "The loadBalancerIP",
"type": "string"
},
"loadBalancerSourceRanges": {
"default": [],
"examples": [
[]
],
"items": {},
"title": "The loadBalancerSourceRanges",
"type": "array"
},
"type": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/type",
"default": "",
"title": "The type",
"type": "string"
}
},
"required": [],
"title": "The service Schema",
"type": "object"
},
"serviceAccount": {
"default": {},
"examples": [
{
"imagePullSecretName": "",
"name": ""
}
],
"properties": {
"annotations": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations",
"default": {},
"title": "The annotations Schema",
"type": "object"
},
"imagePullSecretName": {
"default": "",
"examples": [
""
],
"title": "The imagePullSecretName",
"type": "string"
},
"name": {
"default": "",
"examples": [
""
],
"title": "The name Schema",
"type": "string"
}
},
"required": [],
"title": "The serviceAccount Schema",
"type": "object"
},
"serviceMonitor": {
"default": {},
"examples": [
{
"create": false,
"endpoints": [],
"labels": {},
"selectorMatchLabels": {}
}
],
"properties": {
"create": {
"default": false,
"examples": [
false
],
"title": "The create",
"type": "boolean"
},
"endpoints": {
"default": [],
"items": {},
"required": [],
"title": "The endpoints",
"type": "array"
},
"labels": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/labels",
"default": {},
"title": "The labels Schema",
"type": "object"
},
"selectorMatchLabels": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector/properties/matchLabels",
"default": {},
"title": "The selectorMatchLabels Schema",
"type": "object"
}
},
"required": [],
"title": "The serviceMonitor Schema",
"type": "object"
},
"setAsDefaultIngress": {
"default": false,
"examples": [
false
],
"title": "The setAsDefaultIngress",
"type": "boolean"
},
"strategy": {
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.apps.v1.DeploymentStrategy"
},
{
"properties": {
"type": {
"enum": [
"Recreate",
"RollingUpdate",
"OnDelete"
],
"type": "string"
}
}
}
],
"default": {},
"title": "The strategy Schema",
"type": "object"
},
"terminationGracePeriodSeconds": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/terminationGracePeriodSeconds",
"default": 30,
"title": "The terminationGracePeriodSeconds Schema",
"type": "integer"
},
"tolerations": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Toleration",
"type": "object"
},
"title": "The tolerations Schema",
"type": "array"
},
"topologySpreadConstraints": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/topologySpreadConstraints",
"default": {},
"title": "The topologySpreadConstraints Schema",
"type": "object"
},
"volumeMounts": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.VolumeMount",
"type": "object"
},
"title": "The volumeMounts Schema",
"type": "array"
},
"volumes": {
"default": [],
"items": {
"$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Volume",
"type": "object"
},
"title": "The volumes Schema",
"type": "array"
},
"watchNamespace": {
"default": "",
"examples": [
""
],
"title": "The watchNamespace",
"type": "string"
},
"watchSecretNamespace": {
"default": "",
"examples": [
""
],
"title": "The watchSecretNamespace",
"type": "string"
},
"wildcardTLS": {
"default": {},
"examples": [],
"properties": {
"cert": {
"default": "",
"examples": [
""
],
"title": "The cert Schema",
"type": "string"
},
"key": {
"default": "",
"examples": [
""
],
"title": "The key Schema",
"type": "string"
},
"secret": {
"default": "",
"examples": [
""
],
"title": "The secret Schema",
"type": "string"
}
},
"required": [],
"title": "The wildcardTLS Schema",
"type": "object"
}
},
"required": [
"name",
"kind",
"image"
],
"title": "The Ingress Controller Helm Schema",
"type": "object"
},
"nginxServiceMesh": {
"default": {},
"examples": [
{
"enable": false,
"enableEgress": false
}
],
"properties": {
"enable": {
"default": false,
"examples": [
false
],
"title": "The enable",
"type": "boolean"
},
"enableEgress": {
"default": false,
"examples": [
false
],
"title": "The enableEgress",
"type": "boolean"
}
},
"required": [
"enable"
],
"title": "The nginxServiceMesh Schema",
"type": "object"
},
"prometheus": {
"default": {},
"examples": [
{
"create": true,
"port": 9113,
"scheme": "http",
"secret": ""
}
],
"properties": {
"create": {
"default": false,
"examples": [
true
],
"title": "The create",
"type": "boolean"
},
"port": {
"default": 9113,
"examples": [
9113
],
"title": "The port",
"type": "integer"
},
"scheme": {
"default": "http",
"examples": [
"http"
],
"title": "The scheme",
"type": "string"
},
"secret": {
"default": "",
"examples": [
""
],
"title": "The secret",
"type": "string"
}
},
"required": [
"create"
],
"title": "The prometheus Schema",
"type": "object"
},
"rbac": {
"default": {},
"examples": [
{
"create": true
}
],
"properties": {
"create": {
"default": false,
"examples": [
true
],
"title": "The create Schema",
"type": "boolean"
}
},
"required": [
"create"
],
"title": "The rbac Schema",
"type": "object"
},
"serviceInsight": {
"default": {},
"examples": [
{
"create": true,
"port": 9114,
"scheme": "http",
"secret": ""
}
],
"properties": {
"create": {
"default": false,
"examples": [
true
],
"title": "The create",
"type": "boolean"
},
"port": {
"default": 9114,
"examples": [
9114
],
"title": "The port",
"type": "integer"
},
"scheme": {
"default": "http",
"examples": [
"http"
],
"title": "The scheme",
"type": "string"
},
"secret": {
"default": "",
"examples": [
""
],
"title": "The secret",
"type": "string"
}
},
"required": [
"create"
],
"title": "The Service Insight Schema",
"type": "object"
}
},
"required": [
"controller",
"rbac",
"prometheus",
"serviceInsight",
"nginxServiceMesh"
],
"title": "Root Schema",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | 10160362c02417062359d19b07fcdcafdd4657ea | 2023-04-18T17:19:10 | schema/mc_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/mc_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"items": {
"properties": {
"answer": {
"type": "string"
},
"answer_cols": {
"type": "number"
},
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
}
},
"required": [
"answer",
"correct"
],
"type": "object"
},
"type": "array"
},
"code": {
"type": "string"
},
"question": {
"type": "string"
},
"type": {
"pattern": "multiple_choice|many_choice",
"type": "string"
}
},
"required": [
"type",
"question",
"answers"
],
"title": "JupyterQuiz Multiple or Many Choice Quiz",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | 70697f0fb624ab6f99434ba21ff6734f1b992547 | 2021-06-15T23:08:13 | schema/num_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/num_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"items": {
"anyOf": [
{
"properties": {
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"value",
"correct"
],
"type": "object"
},
{
"properties": {
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
},
"range": {
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"required": [
"range",
"correct"
],
"type": "object"
},
{
"properties": {
"feedback": {
"type": "string"
},
"type": {
"pattern": "default",
"type": "string"
}
},
"required": [
"type",
"feedback"
],
"type": "object"
}
]
},
"type": "array"
},
"precision": {
"type": "integer"
},
"question": {
"type": "string"
},
"type": {
"pattern": "numeric",
"type": "string"
}
},
"title": "JupyterQuiz Numeric Question",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | e035efb8e28820fb39b283a76439f51bfc705bd0 | 2021-06-15T21:52:27 | schema/num_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/schema/num_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"items": {
"anyOf": [
{
"properties": {
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"value",
"correct"
],
"type": "object"
},
{
"properties": {
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
},
"range": {
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"required": [
"range",
"correct"
],
"type": "object"
},
{
"properties": {
"feedback": {
"type": "string"
},
"type": {
"pattern": "default",
"type": "string"
}
},
"required": [
"type",
"feedback"
],
"type": "object"
}
]
},
"type": "array"
},
"question": {
"type": "string"
},
"type": {
"pattern": "numeric",
"type": "string"
}
},
"title": "JupyterQuiz Numeric Question",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | 70697f0fb624ab6f99434ba21ff6734f1b992547 | 2021-06-15T23:08:13 | schema/mc_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/mc_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"items": {
"properties": {
"answer": {
"type": "string"
},
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
}
},
"required": [
"answer",
"correct"
],
"type": "object"
},
"type": "array"
},
"code": {
"type": "string"
},
"question": {
"type": "string"
},
"type": {
"pattern": "multiple_choice|many_choice",
"type": "string"
}
},
"required": [
"type",
"question",
"answers"
],
"title": "JupyterQuiz Multiple or Many Choice Quiz",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | b1903bbc798d023c6a02d6fcaf347b3edd68a610 | 2021-07-06T14:35:23 | schema/mc_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/mc_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"definitions": {
"answerlist": {
"items": {
"properties": {
"answer (+)": {
"type": "string"
},
"code (+)": {
"type": "string"
},
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
}
},
"required": [
"correct"
],
"type": "object"
},
"type": "array"
}
},
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"$ref": "#/definitions/answerlist"
},
"code": {
"type": "string"
},
"question": {
"type": "string"
},
"type": {
"pattern": "multiple_choice|many_choice",
"type": "string"
}
},
"required": [
"question",
"type",
"answers"
],
"title": "JupyterQuiz Multiple or Many Choice Quiz",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | e035efb8e28820fb39b283a76439f51bfc705bd0 | 2021-06-15T21:52:27 | schema/mc_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/schema/mc_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"items": {
"properties": {
"answer": {
"type": "string"
},
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
}
},
"required": [
"answer",
"correct"
],
"type": "object"
},
"type": "array"
},
"precision": {
"type": "integer"
},
"question": {
"type": "string"
},
"type": {
"pattern": "multiple_choice|many_choice",
"type": "string"
}
},
"required": [
"type",
"question",
"answers"
],
"title": "JupyterQuiz Multiple or Many Choice Quiz",
"type": "object"
} | MIT | en |
jmshea/jupyterquiz | bd890de2b4e0684bb86f3629ce5530caa9165cb9 | 2021-06-16T19:44:36 | schema/mc_schema.json | 122 | 2024-05-28T03:48:49.388109Z | {
"$id": "https://github.com/jmshea/jupyterquiz/mc_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"definitions": {
"answerlist": {
"items": {
"properties": {
"answer (+)": {
"type": "string"
},
"code (+)": {
"type": "string"
},
"correct": {
"type": "boolean"
},
"feedback": {
"type": "string"
}
},
"required": [
"correct"
],
"type": "object"
},
"type": "array"
}
},
"description": "Schema for Multiple or Many Choice Questions in JupyterQuiz",
"properties": {
"answers": {
"$ref": "#/definitions/answerlist"
},
"code": {
"type": "string"
},
"question": {
"type": "string"
},
"type": {
"pattern": "multiple_choice|many_choice",
"type": "string"
}
},
"required": [
"question",
"type",
"answers"
],
"title": "JupyterQuiz Multiple or Many Choice Quiz",
"type": "object"
} | MIT | en |
Azure/data-api-builder | a64c277a6d79317afbc8247180891b9a5a7cccb6 | 2024-02-13T05:46:25 | schemas/dab.draft.schema.json | 767 | 2024-05-28T05:37:44.035954Z | {
"$defs": {
"action": {
"oneOf": [
{
"enum": [
"create",
"read",
"update",
"delete"
],
"type": "string"
},
{
"pattern": "[*]",
"type": "string"
}
]
},
"singular-plural": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"plural": {
"type": "string"
},
"singular": {
"type": "string"
}
},
"required": [
"singular"
],
"type": "object"
}
]
}
},
"$id": "https://github.com/Azure/data-api-builder/releases/download/vmajor.minor.patch/dab.draft.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"additionalProperties": false,
"description": "Schema for Data API builder engine",
"properties": {
"$schema": {
"default": null,
"description": "URI of the JSON schema with which the structure, constraints, and data types of this Data API builder runtime configuration file should conform.",
"type": "string"
},
"data-source": {
"additionalProperties": false,
"allOf": [
{
"if": {
"properties": {
"database-type": {
"const": "cosmosdb_nosql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"description": "Database specific properties for the backend database",
"properties": {
"container": {
"description": "Name of the container",
"type": "string"
},
"database": {
"description": "Name of the database",
"type": "string"
},
"schema": {
"description": "Path to the GraphQL schema file",
"type": "string"
}
},
"required": [
"database",
"schema"
],
"type": "object"
}
},
"required": [
"options"
]
}
},
{
"if": {
"properties": {
"database-type": {
"const": "mssql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {
"set-session-context": {
"description": "Enable sending data to MsSql using session context",
"type": "boolean"
}
},
"type": "object"
}
},
"required": []
}
},
{
"if": {
"properties": {
"database-type": {
"enum": [
"mysql",
"postgresql",
"cosmosdb_postgresql"
]
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {},
"required": [],
"type": "object"
}
}
}
}
],
"description": "Data source information",
"properties": {
"connection-string": {
"description": "Connection string for the selected database type",
"type": "string"
},
"database-type": {
"description": "Database used in the backend",
"enum": [
"mssql",
"postgresql",
"mysql",
"cosmosdb_nosql",
"cosmosdb_postgresql"
],
"type": "string"
},
"options": {
"description": "Database specific properties for the backend database",
"type": "object"
}
},
"required": [
"database-type",
"connection-string"
],
"type": "object"
},
"data-source-files": {
"default": null,
"description": "Names of runtime configuration files referencing additional databases.",
"type": "array"
},
"entities": {
"description": "Entities that will be exposed via REST and/or GraphQL",
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"else": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"enum": [
"execute",
"*"
],
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"execute",
"*"
],
"type": "string"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"if": {
"properties": {
"source": {
"properties": {
"type": {
"oneOf": [
{
"const": "table"
},
{
"const": "view"
}
]
}
}
}
}
},
"properties": {
"cache": {
"additionalProperties": false,
"properties": {
"enabled": {
"default": false,
"description": "Enable caching of responses for this entity.",
"type": "boolean"
},
"ttl-seconds": {
"default": 5,
"description": "Time to live in seconds",
"type": "integer"
}
},
"type": "object"
},
"graphql": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"type"
]
},
{
"required": [
"operation"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling GraphQL requests for this specific entity.",
"type": "boolean"
},
"operation": {
"enum": [
"mutation",
"query"
],
"type": "string"
},
"type": {
"$ref": "#/$defs/singular-plural"
}
},
"type": "object"
}
]
},
"mappings": {
"description": "Define mappings between database fields and GraphQL and REST fields",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"type": "object"
},
"permissions": {
"description": "Permissions assigned to this entity",
"type": "array"
},
"relationships": {
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"properties": {
"cardinality": {
"enum": [
"one",
"many"
],
"type": "string"
},
"linking.object": {
"description": "The database object used for supporting the M:N relationship",
"type": "string"
},
"linking.source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"linking.target.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"target.entity": {
"type": "string"
},
"target.fields": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cardinality",
"target.entity"
]
}
},
"type": "object"
},
"rest": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"path"
]
},
{
"required": [
"methods"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling REST requests this specific entity.",
"type": "boolean"
},
"methods": {
"items": {
"enum": [
"get",
"post",
"put",
"patch",
"delete"
],
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
}
},
"type": "object"
}
]
},
"source": {
"oneOf": [
{
"description": "The object in the backend database that is mapped to the entity",
"type": "string"
},
{
"additionalProperties": false,
"description": "The object in the backend database that is mapped to the entity",
"properties": {
"key-fields": {
"description": "List of fields to be used as primary keys. Mandatory field for views when generated through the CLI.",
"items": {
"type": "string"
},
"type": "array"
},
"object": {
"description": "Database object name",
"type": "string"
},
"parameters": {
"description": "Dictionary of parameters and their values",
"patternProperties": {
"^.*$": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"type": {
"description": "Database object type",
"enum": [
"table",
"view",
"stored-procedure"
],
"type": "string"
}
},
"required": [
"type",
"object"
],
"type": "object"
}
]
}
},
"required": [
"source",
"permissions"
],
"then": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"$ref": "#/$defs/action"
},
{
"additionalProperties": false,
"properties": {
"action": {
"$ref": "#/$defs/action"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"type": "object"
}
},
"type": "object"
},
"runtime": {
"additionalProperties": false,
"description": "Runtime configuration settings",
"properties": {
"cache": {
"additionalProperties": false,
"properties": {
"enabled": {
"default": false,
"description": "Enable caching of responses globally.",
"type": "boolean"
},
"ttl-seconds": {
"default": 5,
"description": "Time to live in seconds",
"type": "integer"
}
},
"type": "object"
},
"graphql": {
"additionalProperties": false,
"description": "Global GraphQL endpoint configuration",
"properties": {
"allow-introspection": {
"description": "Allow querying of the underlying GraphQL schema.",
"type": "boolean"
},
"enabled": {
"description": "Allow enabling/disabling GraphQL requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/graphql",
"type": "string"
}
},
"type": "object"
},
"host": {
"additionalProperties": false,
"description": "Global hosting configuration",
"properties": {
"authentication": {
"additionalProperties": false,
"properties": {
"jwt": {
"additionalProperties": false,
"properties": {
"audience": {
"type": "string"
},
"issuer": {
"type": "string"
}
},
"type": "object"
},
"provider": {
"default": "StaticWebApps",
"description": "The name of authentication provider",
"type": "string"
}
},
"type": "object"
},
"cors": {
"additionalProperties": false,
"description": "Configure CORS",
"properties": {
"allow-credentials": {
"default": "false",
"description": "Set value for Access-Control-Allow-Credentials header",
"type": "boolean"
},
"origins": {
"default": [],
"description": "Allowed origins",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"mode": {
"default": "production",
"description": "Set if running in Development or Production mode",
"enum": [
"production",
"development"
],
"type": "string"
}
},
"type": "object"
},
"rest": {
"additionalProperties": false,
"description": "Global REST endpoint configuration",
"properties": {
"enabled": {
"description": "Allow enabling/disabling REST requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/api",
"type": "string"
},
"request-body-strict": {
"default": true,
"description": "Does not allow extraneous fields in request body when set to true.",
"type": "boolean"
}
},
"type": "object"
},
"telemetry": {
"additionalProperties": false,
"description": "Telemetry configuration",
"properties": {
"application-insights": {
"additionalProperties": false,
"properties": {
"connection-string": {
"description": "Application Insights connection string",
"type": "string"
},
"enabled": {
"default": true,
"description": "Allow enabling/disabling Application Insights telemetry.",
"type": "boolean"
}
},
"required": [
"connection-string"
],
"type": "object"
}
},
"required": [
"application-insights"
],
"type": "object"
}
},
"type": "object"
}
},
"required": [
"data-source",
"entities"
],
"title": "Data API builder",
"type": "object"
} | MIT | en |
Azure/data-api-builder | 49796db8d85210d75730b6709d88aae3df27f8cc | 2023-11-10T22:45:14 | schemas/dab.draft.schema.json | 767 | 2024-05-28T05:37:44.035954Z | {
"$defs": {
"action": {
"oneOf": [
{
"enum": [
"create",
"read",
"update",
"delete"
],
"type": "string"
},
{
"pattern": "[*]",
"type": "string"
}
]
},
"singular-plural": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"plural": {
"type": "string"
},
"singular": {
"type": "string"
}
},
"required": [
"singular"
],
"type": "object"
}
]
}
},
"$id": "https://github.com/Azure/data-api-builder/releases/download/vmajor.minor.patch/dab.draft.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"additionalProperties": false,
"description": "Schema for Data API builder engine",
"properties": {
"$schema": {
"default": null,
"description": "URI of the JSON schema with which the structure, constraints, and data types of this Data API builder runtime configuration file should conform.",
"type": "string"
},
"data-source": {
"additionalProperties": false,
"allOf": [
{
"if": {
"properties": {
"database-type": {
"const": "cosmosdb_nosql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"description": "Database specific properties for the backend database",
"properties": {
"container": {
"description": "Name of the container",
"type": "string"
},
"database": {
"description": "Name of the database",
"type": "string"
},
"schema": {
"description": "Path to the GraphQL schema file",
"type": "string"
}
},
"required": [
"database",
"schema"
],
"type": "object"
}
},
"required": [
"options"
]
}
},
{
"if": {
"properties": {
"database-type": {
"const": "mssql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {
"set-session-context": {
"description": "Enable sending data to MsSql using session context",
"type": "boolean"
}
},
"type": "object"
}
},
"required": []
}
},
{
"if": {
"properties": {
"database-type": {
"enum": [
"mysql",
"postgresql",
"cosmosdb_postgresql"
]
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {},
"required": [],
"type": "object"
}
}
}
}
],
"description": "Data source information",
"properties": {
"connection-string": {
"description": "Connection string for the selected database type",
"type": "string"
},
"database-type": {
"description": "Database used in the backend",
"enum": [
"mssql",
"postgresql",
"mysql",
"cosmosdb_nosql",
"cosmosdb_postgresql"
],
"type": "string"
},
"options": {
"description": "Database specific properties for the backend database",
"type": "object"
}
},
"required": [
"database-type",
"connection-string"
],
"type": "object"
},
"data-source-files": {
"default": null,
"description": "Names of runtime configuration files referencing additional databases.",
"type": "array"
},
"entities": {
"description": "Entities that will be exposed via REST and/or GraphQL",
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"else": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"enum": [
"execute",
"*"
],
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"execute",
"*"
],
"type": "string"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"if": {
"properties": {
"source": {
"properties": {
"type": {
"oneOf": [
{
"const": "table"
},
{
"const": "view"
}
]
}
}
}
}
},
"properties": {
"graphql": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"type"
]
},
{
"required": [
"operation"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling GraphQL requests for this specific entity.",
"type": "boolean"
},
"operation": {
"enum": [
"mutation",
"query"
],
"type": "string"
},
"type": {
"$ref": "#/$defs/singular-plural"
}
},
"type": "object"
}
]
},
"mappings": {
"description": "Define mappings between database fields and GraphQL and REST fields",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"type": "object"
},
"permissions": {
"description": "Permissions assigned to this entity",
"type": "array"
},
"relationships": {
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"properties": {
"cardinality": {
"enum": [
"one",
"many"
],
"type": "string"
},
"linking.object": {
"description": "The database object used for supporting the M:N relationship",
"type": "string"
},
"linking.source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"linking.target.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"target.entity": {
"type": "string"
},
"target.fields": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cardinality",
"target.entity"
]
}
},
"type": "object"
},
"rest": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"path"
]
},
{
"required": [
"methods"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling REST requests this specific entity.",
"type": "boolean"
},
"methods": {
"items": {
"enum": [
"get",
"post",
"put",
"patch",
"delete"
],
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
}
},
"type": "object"
}
]
},
"source": {
"oneOf": [
{
"description": "The object in the backend database that is mapped to the entity",
"type": "string"
},
{
"additionalProperties": false,
"description": "The object in the backend database that is mapped to the entity",
"properties": {
"key-fields": {
"description": "List of fields to be used as primary keys. Mandatory field for views when generated through the CLI.",
"items": {
"type": "string"
},
"type": "array"
},
"object": {
"description": "Database object name",
"type": "string"
},
"parameters": {
"description": "Dictionary of parameters and their values",
"patternProperties": {
"^.*$": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"type": {
"description": "Database object type",
"enum": [
"table",
"view",
"stored-procedure"
],
"type": "string"
}
},
"required": [
"type",
"object"
],
"type": "object"
}
]
}
},
"required": [
"source",
"permissions"
],
"then": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"$ref": "#/$defs/action"
},
{
"additionalProperties": false,
"properties": {
"action": {
"$ref": "#/$defs/action"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"type": "object"
}
},
"type": "object"
},
"runtime": {
"additionalProperties": false,
"description": "Runtime configuration settings",
"properties": {
"graphql": {
"additionalProperties": false,
"description": "Global GraphQL endpoint configuration",
"properties": {
"allow-introspection": {
"description": "Allow querying of the underlying GraphQL schema.",
"type": "boolean"
},
"enabled": {
"description": "Allow enabling/disabling GraphQL requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/graphql",
"type": "string"
}
},
"type": "object"
},
"host": {
"additionalProperties": false,
"description": "Global hosting configuration",
"properties": {
"authentication": {
"additionalProperties": false,
"properties": {
"jwt": {
"additionalProperties": false,
"properties": {
"audience": {
"type": "string"
},
"issuer": {
"type": "string"
}
},
"type": "object"
},
"provider": {
"default": "StaticWebApps",
"description": "The name of authentication provider",
"type": "string"
}
},
"type": "object"
},
"cors": {
"additionalProperties": false,
"description": "Configure CORS",
"properties": {
"allow-credentials": {
"default": "false",
"description": "Set value for Access-Control-Allow-Credentials header",
"type": "boolean"
},
"origins": {
"default": [],
"description": "Allowed origins",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"mode": {
"default": "production",
"description": "Set if running in Development or Production mode",
"enum": [
"production",
"development"
],
"type": "string"
}
},
"type": "object"
},
"rest": {
"additionalProperties": false,
"description": "Global REST endpoint configuration",
"properties": {
"enabled": {
"description": "Allow enabling/disabling REST requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/api",
"type": "string"
},
"request-body-strict": {
"default": true,
"description": "Does not allow extraneous fields in request body when set to true.",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}
},
"required": [
"data-source",
"entities"
],
"title": "Data API builder",
"type": "object"
} | MIT | en |
Azure/data-api-builder | 1f3f176aac39f3d923d125caa9b7724f3f49ac31 | 2024-01-25T09:19:18 | schemas/dab.draft.schema.json | 767 | 2024-05-28T05:37:44.035954Z | {
"$defs": {
"action": {
"oneOf": [
{
"enum": [
"create",
"read",
"update",
"delete"
],
"type": "string"
},
{
"pattern": "[*]",
"type": "string"
}
]
},
"singular-plural": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"plural": {
"type": "string"
},
"singular": {
"type": "string"
}
},
"required": [
"singular"
],
"type": "object"
}
]
}
},
"$id": "https://github.com/Azure/data-api-builder/releases/download/vmajor.minor.patch/dab.draft.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"additionalProperties": false,
"description": "Schema for Data API builder engine",
"properties": {
"$schema": {
"default": null,
"description": "URI of the JSON schema with which the structure, constraints, and data types of this Data API builder runtime configuration file should conform.",
"type": "string"
},
"data-source": {
"additionalProperties": false,
"allOf": [
{
"if": {
"properties": {
"database-type": {
"const": "cosmosdb_nosql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"description": "Database specific properties for the backend database",
"properties": {
"container": {
"description": "Name of the container",
"type": "string"
},
"database": {
"description": "Name of the database",
"type": "string"
},
"schema": {
"description": "Path to the GraphQL schema file",
"type": "string"
}
},
"required": [
"database",
"schema"
],
"type": "object"
}
},
"required": [
"options"
]
}
},
{
"if": {
"properties": {
"database-type": {
"const": "mssql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {
"set-session-context": {
"description": "Enable sending data to MsSql using session context",
"type": "boolean"
}
},
"type": "object"
}
},
"required": []
}
},
{
"if": {
"properties": {
"database-type": {
"enum": [
"mysql",
"postgresql",
"cosmosdb_postgresql"
]
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {},
"required": [],
"type": "object"
}
}
}
}
],
"description": "Data source information",
"properties": {
"connection-string": {
"description": "Connection string for the selected database type",
"type": "string"
},
"database-type": {
"description": "Database used in the backend",
"enum": [
"mssql",
"postgresql",
"mysql",
"cosmosdb_nosql",
"cosmosdb_postgresql"
],
"type": "string"
},
"options": {
"description": "Database specific properties for the backend database",
"type": "object"
}
},
"required": [
"database-type",
"connection-string"
],
"type": "object"
},
"data-source-files": {
"default": null,
"description": "Names of runtime configuration files referencing additional databases.",
"type": "array"
},
"entities": {
"description": "Entities that will be exposed via REST and/or GraphQL",
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"else": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"enum": [
"execute",
"*"
],
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"execute",
"*"
],
"type": "string"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"if": {
"properties": {
"source": {
"properties": {
"type": {
"oneOf": [
{
"const": "table"
},
{
"const": "view"
}
]
}
}
}
}
},
"properties": {
"graphql": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"type"
]
},
{
"required": [
"operation"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling GraphQL requests for this specific entity.",
"type": "boolean"
},
"operation": {
"enum": [
"mutation",
"query"
],
"type": "string"
},
"type": {
"$ref": "#/$defs/singular-plural"
}
},
"type": "object"
}
]
},
"mappings": {
"description": "Define mappings between database fields and GraphQL and REST fields",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"type": "object"
},
"permissions": {
"description": "Permissions assigned to this entity",
"type": "array"
},
"relationships": {
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"properties": {
"cardinality": {
"enum": [
"one",
"many"
],
"type": "string"
},
"linking.object": {
"description": "The database object used for supporting the M:N relationship",
"type": "string"
},
"linking.source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"linking.target.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"target.entity": {
"type": "string"
},
"target.fields": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cardinality",
"target.entity"
]
}
},
"type": "object"
},
"rest": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"path"
]
},
{
"required": [
"methods"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling REST requests this specific entity.",
"type": "boolean"
},
"methods": {
"items": {
"enum": [
"get",
"post",
"put",
"patch",
"delete"
],
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
}
},
"type": "object"
}
]
},
"source": {
"oneOf": [
{
"description": "The object in the backend database that is mapped to the entity",
"type": "string"
},
{
"additionalProperties": false,
"description": "The object in the backend database that is mapped to the entity",
"properties": {
"key-fields": {
"description": "List of fields to be used as primary keys. Mandatory field for views when generated through the CLI.",
"items": {
"type": "string"
},
"type": "array"
},
"object": {
"description": "Database object name",
"type": "string"
},
"parameters": {
"description": "Dictionary of parameters and their values",
"patternProperties": {
"^.*$": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"type": {
"description": "Database object type",
"enum": [
"table",
"view",
"stored-procedure"
],
"type": "string"
}
},
"required": [
"type",
"object"
],
"type": "object"
}
]
}
},
"required": [
"source",
"permissions"
],
"then": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"$ref": "#/$defs/action"
},
{
"additionalProperties": false,
"properties": {
"action": {
"$ref": "#/$defs/action"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"type": "object"
}
},
"type": "object"
},
"runtime": {
"additionalProperties": false,
"description": "Runtime configuration settings",
"properties": {
"graphql": {
"additionalProperties": false,
"description": "Global GraphQL endpoint configuration",
"properties": {
"allow-introspection": {
"description": "Allow querying of the underlying GraphQL schema.",
"type": "boolean"
},
"enabled": {
"description": "Allow enabling/disabling GraphQL requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/graphql",
"type": "string"
}
},
"type": "object"
},
"host": {
"additionalProperties": false,
"description": "Global hosting configuration",
"properties": {
"authentication": {
"additionalProperties": false,
"properties": {
"jwt": {
"additionalProperties": false,
"properties": {
"audience": {
"type": "string"
},
"issuer": {
"type": "string"
}
},
"type": "object"
},
"provider": {
"default": "StaticWebApps",
"description": "The name of authentication provider",
"type": "string"
}
},
"type": "object"
},
"cors": {
"additionalProperties": false,
"description": "Configure CORS",
"properties": {
"allow-credentials": {
"default": "false",
"description": "Set value for Access-Control-Allow-Credentials header",
"type": "boolean"
},
"origins": {
"default": [],
"description": "Allowed origins",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"mode": {
"default": "production",
"description": "Set if running in Development or Production mode",
"enum": [
"production",
"development"
],
"type": "string"
}
},
"type": "object"
},
"rest": {
"additionalProperties": false,
"description": "Global REST endpoint configuration",
"properties": {
"enabled": {
"description": "Allow enabling/disabling REST requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/api",
"type": "string"
},
"request-body-strict": {
"default": true,
"description": "Does not allow extraneous fields in request body when set to true.",
"type": "boolean"
}
},
"type": "object"
},
"telemetry": {
"additionalProperties": false,
"description": "Telemetry configuration",
"properties": {
"application-insights": {
"additionalProperties": false,
"properties": {
"connection-string": {
"description": "Application Insights connection string",
"type": "string"
},
"enabled": {
"default": true,
"description": "Allow enabling/disabling Application Insights telemetry.",
"type": "boolean"
}
},
"required": [
"connection-string"
],
"type": "object"
}
},
"required": [
"application-insights"
],
"type": "object"
}
},
"type": "object"
}
},
"required": [
"data-source",
"entities"
],
"title": "Data API builder",
"type": "object"
} | MIT | en |
Azure/data-api-builder | 2b18315c233cfa1c1891411f37b867b500d375f2 | 2024-03-29T02:56:28 | schemas/dab.draft.schema.json | 767 | 2024-05-28T05:37:44.035954Z | {
"$defs": {
"action": {
"oneOf": [
{
"enum": [
"create",
"read",
"update",
"delete"
],
"type": "string"
},
{
"pattern": "[*]",
"type": "string"
}
]
},
"singular-plural": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"plural": {
"type": "string"
},
"singular": {
"type": "string"
}
},
"required": [
"singular"
],
"type": "object"
}
]
}
},
"$id": "https://github.com/Azure/data-api-builder/releases/download/vmajor.minor.patch/dab.draft.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"additionalProperties": false,
"description": "Schema for Data API builder engine",
"properties": {
"$schema": {
"default": null,
"description": "URI of the JSON schema with which the structure, constraints, and data types of this Data API builder runtime configuration file should conform.",
"type": "string"
},
"data-source": {
"additionalProperties": false,
"allOf": [
{
"if": {
"properties": {
"database-type": {
"const": "cosmosdb_nosql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"description": "Database specific properties for the backend database",
"properties": {
"container": {
"description": "Name of the container",
"type": "string"
},
"database": {
"description": "Name of the database",
"type": "string"
},
"schema": {
"description": "Path to the GraphQL schema file",
"type": "string"
}
},
"required": [
"database",
"schema"
],
"type": "object"
}
},
"required": [
"options"
]
}
},
{
"if": {
"properties": {
"database-type": {
"const": "mssql"
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {
"set-session-context": {
"description": "Enable sending data to MsSql using session context",
"type": "boolean"
}
},
"type": "object"
}
},
"required": []
}
},
{
"if": {
"properties": {
"database-type": {
"enum": [
"mysql",
"postgresql",
"cosmosdb_postgresql"
]
}
}
},
"then": {
"properties": {
"options": {
"additionalProperties": false,
"properties": {},
"required": [],
"type": "object"
}
}
}
}
],
"description": "Data source information",
"properties": {
"connection-string": {
"description": "Connection string for the selected database type",
"type": "string"
},
"database-type": {
"description": "Database used in the backend",
"enum": [
"mssql",
"postgresql",
"mysql",
"cosmosdb_nosql",
"cosmosdb_postgresql"
],
"type": "string"
},
"options": {
"description": "Database specific properties for the backend database",
"type": "object"
}
},
"required": [
"database-type",
"connection-string"
],
"type": "object"
},
"data-source-files": {
"default": null,
"description": "Names of runtime configuration files referencing additional databases.",
"type": "array"
},
"entities": {
"description": "Entities that will be exposed via REST and/or GraphQL",
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"else": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"enum": [
"execute",
"*"
],
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"execute",
"*"
],
"type": "string"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"if": {
"properties": {
"source": {
"properties": {
"type": {
"oneOf": [
{
"const": "table"
},
{
"const": "view"
}
]
}
}
}
}
},
"properties": {
"cache": {
"additionalProperties": false,
"properties": {
"enabled": {
"default": false,
"description": "Enable caching of responses for this entity.",
"type": "boolean"
},
"ttl-seconds": {
"default": 5,
"description": "Time to live in seconds",
"type": "integer"
}
},
"type": "object"
},
"graphql": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"type"
]
},
{
"required": [
"operation"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling GraphQL requests for this specific entity.",
"type": "boolean"
},
"operation": {
"enum": [
"mutation",
"query"
],
"type": "string"
},
"type": {
"$ref": "#/$defs/singular-plural"
}
},
"type": "object"
}
]
},
"mappings": {
"description": "Define mappings between database fields and GraphQL and REST fields",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"type": "object"
},
"permissions": {
"description": "Permissions assigned to this entity",
"type": "array"
},
"relationships": {
"patternProperties": {
"^.*$": {
"additionalProperties": false,
"properties": {
"cardinality": {
"enum": [
"one",
"many"
],
"type": "string"
},
"linking.object": {
"description": "The database object used for supporting the M:N relationship",
"type": "string"
},
"linking.source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"linking.target.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"source.fields": {
"items": {
"type": "string"
},
"type": "array"
},
"target.entity": {
"type": "string"
},
"target.fields": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cardinality",
"target.entity"
]
}
},
"type": "object"
},
"rest": {
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"anyOf": [
{
"required": [
"path"
]
},
{
"required": [
"methods"
]
},
{
"required": [
"enabled"
]
}
],
"properties": {
"enabled": {
"default": true,
"description": "Allow enabling/disabling REST requests this specific entity.",
"type": "boolean"
},
"methods": {
"items": {
"enum": [
"get",
"post",
"put",
"patch",
"delete"
],
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
}
},
"type": "object"
}
]
},
"source": {
"oneOf": [
{
"description": "The object in the backend database that is mapped to the entity",
"type": "string"
},
{
"additionalProperties": false,
"description": "The object in the backend database that is mapped to the entity",
"properties": {
"key-fields": {
"description": "List of fields to be used as primary keys. Mandatory field for views when generated through the CLI.",
"items": {
"type": "string"
},
"type": "array"
},
"object": {
"description": "Database object name",
"type": "string"
},
"parameters": {
"description": "Dictionary of parameters and their values",
"patternProperties": {
"^.*$": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"type": {
"description": "Database object type",
"enum": [
"table",
"view",
"stored-procedure"
],
"type": "string"
}
},
"required": [
"type",
"object"
],
"type": "object"
}
]
}
},
"required": [
"source",
"permissions"
],
"then": {
"properties": {
"permissions": {
"description": "Permissions assigned to this object",
"items": {
"additionalProperties": false,
"properties": {
"actions": {
"oneOf": [
{
"pattern": "[*]",
"type": "string"
},
{
"items": {
"oneOf": [
{
"$ref": "#/$defs/action"
},
{
"additionalProperties": false,
"properties": {
"action": {
"$ref": "#/$defs/action"
},
"fields": {
"additionalProperties": false,
"properties": {
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"include": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"policy": {
"additionalProperties": false,
"description": "Define item-level security policy",
"properties": {
"database": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
]
},
"type": "array",
"uniqueItems": true
}
]
},
"role": {
"type": "string"
}
},
"type": "object"
},
"required": [
"role",
"actions"
],
"type": "array"
}
}
},
"type": "object"
}
},
"type": "object"
},
"runtime": {
"additionalProperties": false,
"description": "Runtime configuration settings",
"properties": {
"cache": {
"additionalProperties": false,
"properties": {
"enabled": {
"default": false,
"description": "Enable caching of responses globally.",
"type": "boolean"
},
"ttl-seconds": {
"default": 5,
"description": "Time to live in seconds",
"type": "integer"
}
},
"type": "object"
},
"graphql": {
"additionalProperties": false,
"description": "Global GraphQL endpoint configuration",
"properties": {
"allow-introspection": {
"description": "Allow querying of the underlying GraphQL schema.",
"type": "boolean"
},
"enabled": {
"description": "Allow enabling/disabling GraphQL requests for all entities.",
"type": "boolean"
},
"multiple-mutations": {
"additionalProperties": false,
"description": "Configuration properties for multiple mutation operations",
"properties": {
"create": {
"additionalProperties": false,
"description": "Options for multiple create operations",
"properties": {
"enabled": {
"default": false,
"description": "Allow enabling/disabling multiple create operations for all entities.",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"path": {
"default": "/graphql",
"type": "string"
}
},
"type": "object"
},
"host": {
"additionalProperties": false,
"description": "Global hosting configuration",
"properties": {
"authentication": {
"additionalProperties": false,
"properties": {
"jwt": {
"additionalProperties": false,
"properties": {
"audience": {
"type": "string"
},
"issuer": {
"type": "string"
}
},
"type": "object"
},
"provider": {
"default": "StaticWebApps",
"description": "The name of authentication provider",
"type": "string"
}
},
"type": "object"
},
"cors": {
"additionalProperties": false,
"description": "Configure CORS",
"properties": {
"allow-credentials": {
"default": "false",
"description": "Set value for Access-Control-Allow-Credentials header",
"type": "boolean"
},
"origins": {
"default": [],
"description": "Allowed origins",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"mode": {
"default": "production",
"description": "Set if running in Development or Production mode",
"enum": [
"production",
"development"
],
"type": "string"
}
},
"type": "object"
},
"rest": {
"additionalProperties": false,
"description": "Global REST endpoint configuration",
"properties": {
"enabled": {
"description": "Allow enabling/disabling REST requests for all entities.",
"type": "boolean"
},
"path": {
"default": "/api",
"type": "string"
},
"request-body-strict": {
"default": true,
"description": "Does not allow extraneous fields in request body when set to true.",
"type": "boolean"
}
},
"type": "object"
},
"telemetry": {
"additionalProperties": false,
"description": "Telemetry configuration",
"properties": {
"application-insights": {
"additionalProperties": false,
"properties": {
"connection-string": {
"description": "Application Insights connection string",
"type": "string"
},
"enabled": {
"default": true,
"description": "Allow enabling/disabling Application Insights telemetry.",
"type": "boolean"
}
},
"required": [
"connection-string"
],
"type": "object"
}
},
"required": [
"application-insights"
],
"type": "object"
}
},
"type": "object"
}
},
"required": [
"data-source",
"entities"
],
"title": "Data API builder",
"type": "object"
} | MIT | en |
Azure/PSRule.Rules.Azure | d3f407897a9213f24acfe01bf533ecc6601f59eb | 2024-02-01T18:15:40 | .vscode/policy-ignore.schema.json | 373 | 2024-05-29T17:41:24.423011Z | {
"$schema": "https://json-schema.org/draft-07/schema#",
"description": "Policy ignore identifies policies that will be ignored by PSRule for generating rules during export of policies.",
"items": {
"additionalProperties": false,
"examples": [
{
"policyDefinitionIds": [],
"reason": "Duplicate",
"value": ""
}
],
"properties": {
"policyDefinitionIds": {
"description": "The resource IDs of built-in policies to ignore.",
"items": {
"type": "string"
},
"minItems": 1,
"title": "Policy definition IDs",
"type": "array",
"uniqueItems": true
},
"reason": {
"default": "Duplicate",
"enum": [
"Duplicate",
"NotApplicable"
],
"title": "The reason why the policy definition is ignored.",
"type": "string"
},
"value": {
"description": "An additional relating to the reason the policy definition was ignored.",
"title": "Value",
"type": "string"
}
}
},
"title": "Policy as Code Ignore",
"type": "array"
} | MIT | en |
Azure/template-specs | fcfc1c1cf236e22a679b99b167c45287cb379271 | 2021-12-07T02:53:31 | built-ins/schemas/builtInTemplateSpecVersionMetadata.v1.json | 30 | 2024-05-28T05:27:47.66924Z | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"description": "Contains information about a built-in template spec version, such as description and supported clouds, etc.",
"properties": {
"$schema": {
"type": "string"
},
"description": {
"description": "A short description of the built-in template spec version. For new versions, these can include change notes.",
"type": "string"
},
"launchDateUtc": {
"description": "The earliest date/time that the built-in version should be made available for use.",
"format": "date-time",
"type": "string"
},
"supportedClouds": {
"additionalItems": false,
"additionalProperties": false,
"description": "The Azure cloud environments where this version is supported. Note that if Prod is supported, DF must be supported as well. Value details: 'DF' - Internal Microsoft Test Cloud, 'FF' - US Gov Cloud, 'Prod' - Public Azure, 'MC' - Chinese National Cloud.",
"items": {
"enum": [
"DF",
"FF",
"MC",
"Prod"
],
"type": "string"
},
"type": "array"
},
"supportsAirGapped": {
"default": false,
"description": "Indicates whether this built-in is supported on air-gapped clouds.",
"type": "boolean"
}
},
"required": [
"description",
"supportedClouds"
],
"title": "BuiltInTemplateSpecVersionMetadata",
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | df3884a0ee45bae02dd59f35575a3c40b3a94d4d | 2023-08-29T14:56:28 | Schemas/global-settings-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"globalNotScopes": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"pacEnvironments": {
"items": [
{
"additionalProperties": false,
"properties": {
"cloud": {
"type": "string"
},
"deploymentRootScope": {
"type": "string"
},
"desiredState": {
"additionalProperties": false,
"properties": {
"excludedPolicyAssignments": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicyDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicySetDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"includeResourceGroups": {
"type": "boolean"
},
"strategy": {
"enum": [
"full",
"ownedOnly"
],
"type": "string"
}
},
"required": [
"strategy"
],
"type": "object"
},
"inheritedDefinitionsScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"pacSelector": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"pacSelector",
"cloud",
"tenantId",
"deploymentRootScope"
],
"type": "object"
}
],
"type": "array"
},
"pacOwnerId": {
"type": "string"
},
"telemetryOptOut": {
"type": "boolean"
}
},
"required": [
"pacOwnerId",
"pacEnvironments"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/policy-documentation-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"anyOf": [
{
"required": [
"documentAssignments"
]
},
{
"required": [
"documentPolicySets"
]
}
],
"properties": {
"documentAssignments": {
"properties": {
"documentationSpecifications": {
"items": [
{
"properties": {
"environmentCategories": {
"items": [
{
"type": "string"
}
],
"minItems": 1,
"type": "array"
},
"fileNameStem": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"fileNameStem",
"environmentCategories",
"title"
],
"type": "object"
}
],
"minItems": 1,
"type": "array"
},
"environmentCategories": {
"items": [
{
"properties": {
"environmentCategory": {
"type": "string"
},
"pacEnvironment": {
"type": "string"
},
"representativeAssignments": {
"items": [
{
"properties": {
"id": {
"type": "string"
},
"shortName": {
"type": "string"
}
},
"required": [
"shortName",
"id"
],
"type": "object"
}
],
"minItems": 1,
"type": "array"
},
"scopes": {
"items": [
{
"type": "string"
}
],
"minItems": 1,
"type": "array"
}
},
"required": [
"pacEnvironment",
"environmentCategory",
"scopes",
"representativeAssignments"
],
"type": "object"
}
],
"minItems": 1,
"type": "array"
}
},
"required": [
"environmentCategories",
"documentationSpecifications"
],
"type": "object"
},
"documentPolicySets": {
"items": [
{
"properties": {
"environmentColumnsInCsv": {
"items": [
{
"type": "string"
}
],
"minItems": 1,
"type": "array"
},
"fileNameStem": {
"type": "string"
},
"pacEnvironment": {
"type": "string"
},
"policySets": {
"items": [
{
"properties": {
"id": {
"type": "string"
},
"shortName": {
"type": "string"
}
},
"required": [
"shortName",
"id"
],
"type": "object"
}
],
"minItems": 1,
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"pacEnvironment",
"fileNameStem",
"title",
"policySets",
"environmentColumnsInCsv"
],
"type": "object"
}
],
"minItems": 1,
"type": "array"
}
},
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | df3884a0ee45bae02dd59f35575a3c40b3a94d4d | 2023-08-29T14:56:28 | Schemas/policy-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"mode": {
"type": "string"
},
"parameters": {
"properties": {
"effect": {
"properties": {
"allowedValues": {
"items": [
{
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
],
"type": "string"
}
],
"minItems": 2,
"type": "array",
"uniqueItems": true
},
"defaultValue": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"metadata": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"const": "Effect"
}
},
"required": [
"displayName"
],
"type": "object"
},
"type": {
"const": "string"
}
},
"required": [
"allowedValues",
"defaultValue",
"metadata",
"type"
],
"type": "object"
}
},
"type": "object"
},
"policyRule": {
"properties": {
"if": {
"type": "object"
},
"then": {
"properties": {
"effect": {
"const": "[parameters('effect')]"
}
},
"required": [
"effect"
],
"type": "object"
}
},
"required": [
"if",
"then"
],
"type": "object"
}
},
"required": [
"displayName",
"mode",
"metadata",
"parameters",
"policyRule"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policyDefinitions"
}
},
"required": [
"name",
"properties"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | df3884a0ee45bae02dd59f35575a3c40b3a94d4d | 2023-08-29T14:56:28 | Schemas/policy-set-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"importPolicyDefinitionGroups": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"parameters": {
"type": "object"
},
"policyDefinitionGroups": {
"items": [
{
"additionalProperties": false,
"properties": {
"additionalMetadataId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
],
"type": "array"
},
"policyDefinitions": {
"items": [
{
"additionalProperties": false,
"oneOf": [
{
"required": [
"policyDefinitionId"
]
},
{
"required": [
"policyDefinitionName"
]
}
],
"properties": {
"groupNames": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"parameters": {
"type": "object"
},
"policyDefinitionId": {
"type": "string"
},
"policyDefinitionName": {
"type": "string"
},
"policyDefinitionReferenceId": {
"type": "string"
}
},
"required": [
"policyDefinitionReferenceId"
],
"type": "object"
}
],
"type": "array"
}
},
"required": [
"displayName",
"metadata",
"policyDefinitions"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policySetDefinitions"
}
},
"required": [
"name",
"properties"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 001bf13e37bcfed7d0b3cee6a8e233e550f945b7 | 2023-10-09T02:44:10 | Schemas/global-settings-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"globalNotScopes": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"pacEnvironments": {
"items": [
{
"additionalProperties": false,
"properties": {
"cloud": {
"type": "string"
},
"deploymentRootScope": {
"type": "string"
},
"desiredState": {
"additionalProperties": false,
"properties": {
"deleteExpiredExemptions": {
"type": "boolean"
},
"deleteOrphanedExemptions": {
"type": "boolean"
},
"excludedPolicyAssignments": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicyDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicySetDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"includeResourceGroups": {
"type": "boolean"
},
"strategy": {
"enum": [
"full",
"ownedOnly"
],
"type": "string"
}
},
"required": [
"strategy"
],
"type": "object"
},
"inheritedDefinitionsScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"pacSelector": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"pacSelector",
"cloud",
"tenantId",
"deploymentRootScope"
],
"type": "object"
}
],
"type": "array"
},
"pacOwnerId": {
"type": "string"
},
"telemetryOptOut": {
"type": "boolean"
}
},
"required": [
"pacOwnerId",
"pacEnvironments"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/policy-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"mode": {
"type": "string"
},
"parameters": {
"properties": {
"effect": {
"properties": {
"allowedValues": {
"items": [
{
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
],
"type": "string"
}
],
"minItems": 2,
"type": "array",
"uniqueItems": true
},
"defaultValue": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"metadata": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"const": "Effect"
}
},
"required": [
"displayName"
],
"type": "object"
},
"type": {
"const": "string"
}
},
"required": [
"allowedValues",
"defaultValue",
"metadata",
"type"
],
"type": "object"
}
},
"type": "object"
},
"policyRule": {
"properties": {
"if": {
"type": "object"
},
"then": {
"properties": {
"effect": {
"const": "[parameters('effect')]"
}
},
"required": [
"effect"
],
"type": "object"
}
},
"required": [
"if",
"then"
],
"type": "object"
}
},
"required": [
"displayName",
"mode",
"metadata",
"parameters",
"policyRule"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policyDefinitions"
}
},
"required": [
"name",
"properties"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/policy-exemption-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"exemptions": {
"items": [
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"exemptionCategory": {
"type": "string"
},
"expiresOn": {
"type": "string"
},
"metadata": {
"properties": {
"stuff": {
"type": "string"
}
},
"required": [
"stuff"
],
"type": "object"
},
"name": {
"type": "string"
},
"policyAssignmentId": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"required": [
"name",
"displayName",
"exemptionCategory",
"scope",
"policyAssignmentId"
],
"type": "object"
}
],
"type": "array"
}
},
"required": [
"exemptions"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/global-settings-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"globalNotScopes": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"pacEnvironments": {
"items": [
{
"additionalProperties": false,
"properties": {
"cloud": {
"type": "string"
},
"deploymentRootScope": {
"type": "string"
},
"desiredState": {
"additionalProperties": false,
"properties": {
"excludedPolicyAssignments": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicyDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicySetDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"includeResourceGroups": {
"type": "boolean"
},
"strategy": {
"enum": [
"full",
"ownedOnly"
],
"type": "string"
}
},
"required": [
"strategy"
],
"type": "object"
},
"inheritedDefinitionsScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"pacSelector": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"pacSelector",
"cloud",
"tenantId",
"deploymentRootScope"
],
"type": "object"
}
],
"type": "array"
},
"pacOwnerId": {
"type": "string"
}
},
"required": [
"pacOwnerId",
"pacEnvironments"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 8eee5af3010b091c0f210b8e8bf8ed3c30adac50 | 2023-07-27T01:56:35 | Schemas/policy-set-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"importPolicyDefinitionGroups": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"parameters": {
"type": "object"
},
"policyDefinitionGroups": {
"items": [
{
"additionalProperties": false,
"properties": {
"additionalMetadataId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
],
"type": "array"
},
"policyDefinitions": {
"items": [
{
"additionalProperties": false,
"oneOf": [
{
"required": [
"policyDefinitionId"
]
},
{
"required": [
"policyDefinitionName"
]
}
],
"properties": {
"groupNames": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"parameters": {
"type": "object"
},
"policyDefinitionId": {
"type": "string"
},
"policyDefinitionName": {
"type": "string"
},
"policyDefinitionReferenceId": {
"type": "string"
}
},
"required": [
"policyDefinitionReferenceId"
],
"type": "object"
}
],
"type": "array"
}
},
"required": [
"displayName",
"metadata",
"policyDefinitions"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policySetDefinitions"
}
},
"required": [
"name",
"type",
"properties"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/policy-assignment-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$defs": {
"nonComplianceMessages": {
"items": [
{
"anyOf": [
{
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
},
{
"properties": {
"message": {
"type": "string"
},
"policyDefinitionReferenceId": {
"type": "string"
}
},
"required": [
"message",
"policyDefinitionReferenceId"
],
"type": "object"
}
]
}
],
"type": "array"
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"additionalRoleAssignments": {
"patternProperties": {
"^*$": {
"items": [
{
"properties": {
"roleDefinitionId": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"required": [
"roleDefinitionId",
"scope"
],
"type": "object"
}
],
"type": "array"
}
},
"type": "object"
},
"assignment": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"displayName"
],
"type": "object"
},
"children": {
"items": {
"$ref": "#"
},
"type": "array"
},
"definitionEntry": {
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"displayName": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"type": "object"
},
"definitionEntryList": {
"items": [
{
"additionalProperties": false,
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"assignment": {
"properties": {
"append": {
"type": "boolean"
},
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"displayName"
],
"type": "object"
},
"displayName": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"assignment"
],
"type": "object"
}
],
"type": "array"
},
"enforcementMode": {
"enum": [
"DoNotEnforce",
"Default"
]
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"metadata": {
"type": "object"
},
"nodeName": {
"type": "string"
},
"nonComplianceMessageColumn": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"notScope": {
"properties": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
}
},
"type": "object"
},
"overrides": {
"items": [
{
"anyOf": [
{
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
}
],
"properties": {
"effect": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
}
},
"required": [
"effect"
],
"type": "object"
},
{
"oneOf": [
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"effect": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"policyDefinitionReferences": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"effect",
"policyDefinitionReferences"
],
"type": "object"
}
]
}
],
"type": "array"
},
"parameterFile": {
"type": "string"
},
"parameterSelector": {
"type": "string"
},
"parameters": {
"type": "object"
},
"resourceSelectors": {
"items": [
{
"properties": {
"name": {
"type": "string"
},
"selectors": {
"items": [
{
"oneOf": [
{
"required": [
"kind",
"in"
]
},
{
"required": [
"kind",
"notIn"
]
}
],
"properties": {
"in": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"kind": {
"enum": [
"resourceLocation",
"resourceWithoutLocation",
"resourceType"
]
},
"notIn": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
}
],
"type": "array"
}
},
"required": [
"name",
"selectors"
],
"type": "object"
}
],
"type": "array"
},
"scope": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"userAssignedIdentity": {
"patternProperties": {
"^*$": {
"oneOf": [
{
"type": "string"
},
{
"items": [
{
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"identity": {
"type": "string"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"identity"
],
"type": "object"
}
],
"type": "array"
}
]
}
},
"type": "object"
}
},
"required": [
"nodeName"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 0a10e3369344af279afe204dcc52e491c87d88a2 | 2023-06-30T20:24:32 | Schemas/policy-set-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"importPolicyDefinitionGroups": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"parameters": {
"type": "object"
},
"policyDefinitionGroups": {
"items": [
{
"additionalProperties": false,
"properties": {
"additionalMetadataId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
],
"type": "array"
},
"policyDefinitions": {
"items": [
{
"additionalProperties": false,
"oneOf": [
{
"required": [
"policyDefinitionId"
]
},
{
"required": [
"policyDefinitionName"
]
}
],
"properties": {
"groupNames": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"parameters": {
"type": "object"
},
"policyDefinitionId": {
"type": "string"
},
"policyDefinitionName": {
"type": "string"
},
"policyDefinitionReferenceId": {
"type": "string"
}
},
"required": [
"policyDefinitionReferenceId"
],
"type": "object"
}
],
"type": "array"
}
},
"required": [
"displayName",
"metadata",
"policyDefinitions"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policySetDefinitions"
}
},
"required": [
"properties",
"name"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | ad3ff471bd108016b76fce3b275ad96f14665bae | 2023-08-22T13:15:19 | Schemas/policy-assignment-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$defs": {
"nonComplianceMessages": {
"items": [
{
"anyOf": [
{
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
},
{
"properties": {
"message": {
"type": "string"
},
"policyDefinitionReferenceId": {
"type": "string"
}
},
"required": [
"message",
"policyDefinitionReferenceId"
],
"type": "object"
}
]
}
],
"type": "array"
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"additionalRoleAssignments": {
"patternProperties": {
"^*$": {
"items": [
{
"properties": {
"roleDefinitionId": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"required": [
"roleDefinitionId",
"scope"
],
"type": "object"
}
],
"type": "array"
}
},
"type": "object"
},
"assignment": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"displayName"
],
"type": "object"
},
"children": {
"items": {
"$ref": "#"
},
"type": "array"
},
"definitionEntry": {
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"displayName": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"type": "object"
},
"definitionEntryList": {
"items": [
{
"additionalProperties": false,
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"assignment": {
"properties": {
"append": {
"type": "boolean"
},
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"displayName"
],
"type": "object"
},
"displayName": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"assignment"
],
"type": "object"
}
],
"type": "array"
},
"enforcementMode": {
"enum": [
"DoNotEnforce",
"Default"
]
},
"epacCloudEnvironments": {
"type": "object"
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"metadata": {
"type": "object"
},
"nodeName": {
"type": "string"
},
"nonComplianceMessageColumn": {
"type": "string"
},
"nonComplianceMessages": {
"$ref": "#/$defs/nonComplianceMessages"
},
"notScope": {
"properties": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
}
},
"type": "object"
},
"overrides": {
"items": [
{
"anyOf": [
{
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
}
],
"properties": {
"effect": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
}
},
"required": [
"effect"
],
"type": "object"
},
{
"oneOf": [
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"effect": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"policyDefinitionReferences": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"effect",
"policyDefinitionReferences"
],
"type": "object"
}
]
}
],
"type": "array"
},
"parameterFile": {
"type": "string"
},
"parameterSelector": {
"type": "string"
},
"parameters": {
"type": "object"
},
"resourceSelectors": {
"items": [
{
"properties": {
"name": {
"type": "string"
},
"selectors": {
"items": [
{
"oneOf": [
{
"required": [
"kind",
"in"
]
},
{
"required": [
"kind",
"notIn"
]
}
],
"properties": {
"in": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"kind": {
"enum": [
"resourceLocation",
"resourceWithoutLocation",
"resourceType"
]
},
"notIn": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
}
],
"type": "array"
}
},
"required": [
"name",
"selectors"
],
"type": "object"
}
],
"type": "array"
},
"scope": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"userAssignedIdentity": {
"patternProperties": {
"^*$": {
"oneOf": [
{
"type": "string"
},
{
"items": [
{
"oneOf": [
{
"required": [
"policyId"
]
},
{
"required": [
"policyName"
]
},
{
"required": [
"policySetId"
]
},
{
"required": [
"policySetName"
]
}
],
"properties": {
"identity": {
"type": "string"
},
"policyId": {
"type": "string"
},
"policyName": {
"type": "string"
},
"policySetId": {
"type": "string"
},
"policySetName": {
"type": "string"
}
},
"required": [
"identity"
],
"type": "object"
}
],
"type": "array"
}
]
}
},
"type": "object"
}
},
"required": [
"nodeName"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 1ac259d03ceb67fe927881b3da13f5cc7cd7a4c3 | 2024-01-24T20:35:24 | Schemas/policy-exemption-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"exemptions": {
"items": [
{
"additionalProperties": false,
"properties": {
"assignmentScopeValidation": {
"type": "string"
},
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"exemptionCategory": {
"type": "string"
},
"expiresOn": {
"type": "string"
},
"metadata": {
"type": "object"
},
"name": {
"type": "string"
},
"policyAssignmentId": {
"type": "string"
},
"policyDefinitionReferenceIds": {
"type": "array"
},
"resourceSelectors": {
"type": "array"
},
"scope": {
"type": "string"
}
},
"required": [
"name",
"displayName",
"exemptionCategory",
"scope",
"policyAssignmentId"
],
"type": "object"
}
],
"type": "array"
}
},
"required": [
"exemptions"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 8eee5af3010b091c0f210b8e8bf8ed3c30adac50 | 2023-07-27T01:56:35 | Schemas/policy-definition-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"properties": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"metadata": {
"properties": {
"category": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"category"
],
"type": "object"
},
"mode": {
"type": "string"
},
"parameters": {
"properties": {
"effect": {
"properties": {
"allowedValues": {
"items": [
{
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
],
"type": "string"
}
],
"minItems": 2,
"type": "array",
"uniqueItems": true
},
"defaultValue": {
"enum": [
"Disabled",
"Audit",
"Deny",
"Modify",
"Append",
"AuditIfNotExists",
"DeployIfNotExists",
"DenyAction",
"Manual"
]
},
"metadata": {
"properties": {
"description": {
"type": "string"
},
"displayName": {
"const": "Effect"
}
},
"required": [
"displayName"
],
"type": "object"
},
"type": {
"const": "string"
}
},
"required": [
"allowedValues",
"defaultValue",
"metadata",
"type"
],
"type": "object"
}
},
"type": "object"
},
"policyRule": {
"properties": {
"if": {
"type": "object"
},
"then": {
"properties": {
"effect": {
"const": "[parameters('effect')]"
}
},
"required": [
"effect"
],
"type": "object"
}
},
"required": [
"if",
"then"
],
"type": "object"
}
},
"required": [
"displayName",
"mode",
"metadata",
"parameters",
"policyRule"
],
"type": "object"
},
"type": {
"const": "Microsoft.Authorization/policyDefinitions"
}
},
"required": [
"type",
"name",
"properties"
],
"type": "object"
} | MIT | en |
Azure/enterprise-azure-policy-as-code | 5e25af10bf6985b534338aa878b587efd92b2199 | 2024-01-19T16:57:16 | Schemas/global-settings-schema.json | 390 | 2024-05-28T01:04:30.229055Z | {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"globalNotScopes": {
"patternProperties": {
"^*$": {
"items": [
{
"type": "string"
}
],
"type": "array"
}
},
"type": "object"
},
"managedIdentityLocations": {
"patternProperties": {
"^*$": {
"type": "string"
}
},
"type": "object"
},
"pacEnvironments": {
"items": [
{
"additionalProperties": false,
"properties": {
"cloud": {
"type": "string"
},
"deploymentRootScope": {
"type": "string"
},
"desiredState": {
"additionalProperties": false,
"properties": {
"deleteExpiredExemptions": {
"type": "boolean"
},
"deleteOrphanedExemptions": {
"type": "boolean"
},
"excludedPolicyAssignments": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicyDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedPolicySetDefinitions": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"excludedScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"includeResourceGroups": {
"type": "boolean"
},
"keepDfcSecurityAssignments": {
"type": "boolean"
},
"strategy": {
"enum": [
"full",
"ownedOnly"
],
"type": "string"
}
},
"required": [
"strategy"
],
"type": "object"
},
"inheritedDefinitionsScopes": {
"items": [
{
"type": "string"
}
],
"type": "array"
},
"pacSelector": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"pacSelector",
"cloud",
"tenantId",
"deploymentRootScope"
],
"type": "object"
}
],
"type": "array"
},
"pacOwnerId": {
"type": "string"
},
"telemetryOptOut": {
"type": "boolean"
}
},
"required": [
"pacOwnerId",
"pacEnvironments"
],
"type": "object"
} | MIT | en |
Azure/azure-functions-templates | 8b728379101d06ed3ab2f71a2f09ca9da78c4b8e | 2023-04-04T22:28:41 | Docs/Schema/action-schemas.json | 336 | 2024-05-28T05:03:30.961205Z | {
"$id": "<ACTION_SCHEMA_URL>",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "AppendToFile"
}
}
},
"then": {
"properties": {
"createIfNotExists": {
"description": "If a file doesn't exist at filePath, create it",
"type": "boolean"
}
},
"required": [
"filePath",
"source",
"replaceTokens"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "GetTemplateFileContent"
}
}
},
"then": {
"required": [
"assignTo",
"filePath"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "ReplaceTokensInText"
}
}
},
"then": {
"required": [
"assignTo",
"source"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "ShowMarkdownPreview"
}
}
},
"then": {
"required": [
"filePath"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "WriteToFile"
}
}
},
"then": {
"required": [
"filePath",
"source",
"replaceTokens"
]
}
}
],
"description": "An action used in Azure Functions' templates v2 template.json",
"properties": {
"assignTo": {
"description": "Identifier to assign the action's output to",
"pattern": "\\$\\([A-Z0-9_]+\\)",
"type": "string"
},
"conditions": {
"description": "The condition(s) that must evaluate to true to run this job",
"items": {
"properties": {
"name": {
"description": "The name of the variable to evaluate",
"type": "string"
},
"operator": {
"description": "The operator to evaluate the variable against values for a boolean result.",
"enum": [
"In",
"NotIn"
]
},
"values": {
"description": "The value(s) to evaluate the operator against.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"name",
"values",
"operator"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"continueOnError": {
"description": "Whether to continue job execution if the action errors",
"type": "boolean"
},
"errorText": {
"description": "Text to display on error (ex. manual instructions)",
"type": "string"
},
"filePath": {
"description": "File path target of the action's operation",
"type": "string"
},
"replaceTokens": {
"description": "Whether to replace placeholder tokens in file with defined values",
"type": "boolean"
},
"source": {
"description": "Identifier of the input data for the action",
"pattern": "\\$\\([A-Z0-9_]+\\)",
"type": "string"
},
"type": {
"description": "Type of the action",
"enum": [
"AppendToFile",
"GetTemplateFileContent",
"ReplaceTokensInText",
"ShowMarkdownPreview",
"WriteToFile"
]
}
},
"required": [
"type"
],
"title": "Actions",
"type": "object"
} | MIT | en |
Azure/azure-functions-templates | 9d9c7d180b65dc4011cf02c17dba7dd1af516d16 | 2023-04-04T15:18:46 | Docs/Schema/action-schemas.json | 336 | 2024-05-28T05:03:30.961205Z | {
"$id": "<ACTION_SCHEMA_URL>",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "AppendToFile"
}
}
},
"then": {
"properties": {
"createIfNotExists": {
"description": "If a file doesn't exist at filePath, create it",
"type": "boolean"
}
},
"required": [
"filePath",
"source",
"replaceTokens"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "GetTemplateFileContent"
}
}
},
"then": {
"required": [
"assignTo",
"filePath"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "ReplaceTokensInText"
}
}
},
"then": {
"required": [
"assignTo",
"source"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "ShowMarkdownPreview"
}
}
},
"then": {
"required": [
"filePath"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "UserInput"
}
}
},
"then": {
"properties": {
"defaultValue": {
"description": "The default value to use if the user provides none",
"type": "string"
},
"paramId": {
"description": "Type data for the input corresponding to an entry in user-prompts.json",
"pattern": "([a-zA-Z]+)-([a-zA-Z]+)",
"type": "string"
}
},
"required": [
"assignTo",
"paramId"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "WriteToFile"
}
}
},
"then": {
"required": [
"filePath",
"source",
"replaceTokens"
]
}
}
],
"description": "An action used in Azure Functions' templates v2 template.json",
"properties": {
"assignTo": {
"description": "Identifier to assign the action's output to",
"pattern": "\\$\\([A-Z0-9_]+\\)",
"type": "string"
},
"conditions": {
"description": "The condition(s) that must evaluate to true to run this job",
"items": {
"properties": {
"name": {
"description": "The name of the variable to evaluate",
"type": "string"
},
"operator": {
"description": "The operator to evaluate the variable against values for a boolean result.",
"enum": [
"In",
"NotIn"
]
},
"values": {
"description": "The value(s) to evaluate the operator against.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"name",
"values",
"operator"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"continueOnError": {
"description": "Whether to continue job execution if the action errors",
"type": "boolean"
},
"errorText": {
"description": "Text to display on error (ex. manual instructions)",
"type": "string"
},
"filePath": {
"description": "File path target of the action's operation",
"type": "string"
},
"replaceTokens": {
"description": "Whether to replace placeholder tokens in file with defined values",
"type": "boolean"
},
"source": {
"description": "Identifier of the input data for the action",
"pattern": "\\$\\([A-Z0-9_]+\\)",
"type": "string"
},
"type": {
"description": "Type of the action",
"enum": [
"AppendToFile",
"GetTemplateFileContent",
"ReplaceTokensInText",
"ShowMarkdownPreview",
"UserInput",
"WriteToFile"
]
}
},
"required": [
"type"
],
"title": "Actions",
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 30de040937d838dfbb36d1a676b528762230c129 | 2022-04-29T10:45:07 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | ada2ffbe1e6d5184b45592a622281d91d23015e9 | 2022-04-29T10:45:07 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 8a601fdc1166c3e8791cde053ca0df5b1a7591a0 | 2023-03-28T18:41:26 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLanguage": {
"description": "The runtime language of the API",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiVersion": {
"description": "The version of the API runtime language",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"dataApiLocation": {
"description": "The folder containing configurations for database connections",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiDevserverUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appDevserverUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"dataApiLocation": {
"description": "The folder containing configurations for database connections",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | cf4f5c0d3feb0e4c64c447251f84b66b4eaebc5d | 2022-04-08T19:24:01 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"contextParameters": {
"properties": {
"context": {
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"deploymentToken": {
"description": "The secret toekn used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"swaConfigLocation": {
"description": "The the directory where the staticwebapp.config.json file is located",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
},
"workflowParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"build": {
"description": "Build the front-end app and API before starting the emulator",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/workflowParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/workflowParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/workflowParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | d94fe811028457f2aab50b0c018b45c569366980 | 2022-04-04T15:30:40 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiPrefix": {
"enum": [
"api"
],
"type": "string"
},
"appArtifactLocation": {
"description": "Location of the build output directory relative to the appLocation",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"build": {
"type": "boolean"
},
"customUrlScheme": {
"type": "string"
},
"deploymentToken": {
"description": "The secret toekn used to authenticate with the Static Web Apps",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"overridableErrorCode": {
"items": {
"type": "number"
},
"type": "array"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigFilename": {
"enum": [
"staticwebapp.config.json"
],
"type": "string"
},
"swaConfigFilenameLegacy": {
"enum": [
"routes.json"
],
"type": "string"
},
"swaConfigLocation": {
"description": "The the directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
{
"properties": {
"context": {
"type": "string"
}
},
"type": "object"
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 2000ef93e5d0ee739bd2f4745ca3a53a56c5b460 | 2022-04-04T15:31:23 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiPrefix": {
"enum": [
"api"
],
"type": "string"
},
"appArtifactLocation": {
"description": "Location of the build output directory relative to the appLocation",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"build": {
"description": "Build the front-end app and API before starting the emulator",
"type": "boolean"
},
"customUrlScheme": {
"type": "string"
},
"deploymentToken": {
"description": "The secret toekn used to authenticate with the Static Web Apps",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"overridableErrorCode": {
"items": {
"type": "number"
},
"type": "array"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigFilename": {
"enum": [
"staticwebapp.config.json"
],
"type": "string"
},
"swaConfigFilenameLegacy": {
"enum": [
"routes.json"
],
"type": "string"
},
"swaConfigLocation": {
"description": "The the directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
{
"properties": {
"context": {
"type": "string"
}
},
"type": "object"
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | ec16d560d68cabdcd15257e5ee61603b4bddb57b | 2022-05-16T15:40:59 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiDevserverUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appDevserverUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | c01e512e1c6b3f817e65891aa764e732e27a9809 | 2022-05-02T13:08:14 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 1a3f3d299cbd9e069e50d00814e60a6bb4122c8e | 2021-09-27T07:26:46 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"properties": {
"apiLocation": {
"description": "API folder or Azure Functions emulator address",
"type": "string"
},
"apiPort": {
"description": "API backend port",
"type": "number"
},
"apiPrefix": {
"enum": [
"api"
],
"type": "string"
},
"appArtifactLocation": {
"description": "Location of the build output directory relative to the appLocation",
"type": "string"
},
"appLocation": {
"description": "Location for the static app source code",
"type": "string"
},
"build": {
"type": "boolean"
},
"customUrlScheme": {
"type": "string"
},
"devserverTimeout": {
"description": "Time to wait(in ms) for the dev server to start",
"type": "number"
},
"host": {
"description": "CLI host address",
"type": "string"
},
"overridableErrorCode": {
"items": {
"type": "number"
},
"type": "array"
},
"port": {
"description": "set the cli port",
"type": "number"
},
"run": {
"description": "Run a command at startup",
"type": "string"
},
"ssl": {
"description": "Serve the app and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "SSL certificate (.crt) to use for serving HTTPS",
"type": "string"
},
"sslKey": {
"description": "SSL key (.key) to use for serving HTTPS",
"type": "string"
},
"swaConfigFilename": {
"enum": [
"staticwebapp.config.json"
],
"type": "string"
},
"swaConfigFilenameLegacy": {
"enum": [
"routes.json"
],
"type": "string"
},
"swaConfigLocation": {
"type": "string"
},
"verbose": {
"type": "string"
}
},
"type": "object"
},
{
"properties": {
"context": {
"type": "string"
}
},
"type": "object"
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 2c406ae998ad658f09adf4ba25c938df887e0f2b | 2022-04-08T19:24:01 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"contextParameters": {
"properties": {
"context": {
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/contextParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | a62aee61c208f1ff38ab07bfc382521193138b5b | 2022-05-05T08:20:37 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"serverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 2ba3b51fbcbac9894f948631d6abd9fbac966c45 | 2022-05-05T18:52:52 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"serverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 210b9bf03515544d1eac090e2956065c37a7be39 | 2022-05-16T11:45:57 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 4aa5959301c5da93fb1cb911952fadaa289b7fbb | 2022-05-16T07:47:51 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"serverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | 4c3150b6a439fc92c846e65955276e66c10a2e84 | 2022-04-29T10:45:07 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the app application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | a6029887d641704cb5b2d39304a17b20cea2005e | 2022-05-05T08:20:37 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"serverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | a3a84fcdd201fcf5916142f8b01636f1ae59bea2 | 2022-05-05T08:20:37 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"apiServerUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devServerUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"runBuild": {
"description": "Run \"swa build\" before starting the emulator",
"type": "boolean"
},
"serverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | bfd56e7944c32adae35d397b7e6ef99dcf0028b6 | 2022-04-25T14:36:13 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {
"persist": {
"description": "Enable credentials cache persistence",
"type": "boolean"
}
},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in ms) when connecting to a front-end application's dev server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/static-web-apps-cli | ef03a056119e3da1797e17d55f174c322329cd7f | 2023-03-16T10:52:54 | schema/swa-cli.config.schema.json | 578 | 2024-05-28T05:36:02.213023Z | {
"$defs": {
"buildCommandParameters": {
"properties": {
"apiBuildCommand": {
"description": "The command used to build your api",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appBuildCommand": {
"description": "The command used to build your app",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"auto": {
"description": "Automatically detect how to build your app and api",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
}
},
"type": "object"
},
"deployCommandParameters": {
"properties": {
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the application",
"type": "string"
},
"dataApiLocation": {
"description": "The folder containing configurations for database connections",
"type": "string"
},
"deploymentToken": {
"description": "The secret token used to authenticate with the Static Web Apps",
"not": {}
},
"dryRun": {
"description": "Simulate a deploy process without actually running it",
"type": "boolean"
},
"outputLocation": {
"description": "The folder where the front-end public files are location",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
},
"globalParameters": {
"properties": {
"config": {
"description": "Path to swa-cli.config.json file to use",
"not": {},
"type": "string"
},
"printConfig": {
"description": "Print all resolved options",
"type": "string"
},
"verbose": {
"description": "Enable verbose output. Values are: silly,info,log,silent",
"type": "string"
}
},
"type": "object"
},
"initCommandParameters": {
"properties": {
"yes": {
"description": "Answer yes to all prompts (disable interactive mode)",
"type": "boolean"
}
},
"type": "object"
},
"loginCommandParameters": {
"properties": {},
"type": "object"
},
"loginSharedCommandParameters": {
"properties": {
"appName": {
"description": "Azure Static Web App application name",
"type": "string"
},
"clearCredentials": {
"description": "Clear persisted credentials before login",
"type": "boolean"
},
"clientId": {
"description": "Azure client ID",
"type": "string"
},
"clientSecret": {
"description": "Azure client secret",
"type": "string"
},
"resourceGroup": {
"description": "Azure resource group used by this project",
"type": "string"
},
"subscription": {
"description": "Azure subscription ID used by this project",
"type": "string"
},
"tenant": {
"description": "Azure tenant ID",
"type": "string"
},
"useKeychain": {
"description": "Enable using the operating system native keychain for persistent credentials",
"type": "boolean"
}
},
"type": "object"
},
"startCommandParameters": {
"properties": {
"apiDevserverUrl": {
"description": "Connect to the api server at this URL instead of using api location",
"type": "string"
},
"apiLocation": {
"description": "The folder containing the source code of the API application",
"type": "string"
},
"apiPort": {
"description": "The API server port passed to func start",
"type": "number"
},
"appDevserverUrl": {
"description": "Connect to the dev server at this URL instead of using output location",
"type": "string"
},
"appLocation": {
"description": "The folder containing the source code of the front-end application",
"type": "string"
},
"dataApiLocation": {
"description": "The folder containing configurations for database connections",
"type": "string"
},
"devserverTimeout": {
"description": "The time to wait (in seconds) when connecting to a front-end application's dev server or api server",
"type": "number"
},
"funcArgs": {
"description": "Pass additional arguments to the func start command",
"type": "string"
},
"host": {
"description": "The host address to use for the CLI dev server",
"type": "string"
},
"open": {
"description": "Automatically open the CLI dev server in the default browser",
"type": "boolean"
},
"outputLocation": {
"description": "The folder containing the built source of the front-end application",
"type": "string"
},
"port": {
"description": "The port value to use for the CLI dev server",
"type": "number"
},
"run": {
"description": "Run a custon shell command or file at startup",
"type": "string"
},
"ssl": {
"description": "Serve the front-end application and API over HTTPS",
"type": "boolean"
},
"sslCert": {
"description": "The SSL certificate (.crt) to use when enabling HTTPS",
"type": "string"
},
"sslKey": {
"description": "The SSL key (.key) to use when enabling HTTPS",
"type": "string"
},
"swaConfigLocation": {
"description": "The directory where the staticwebapp.config.json file is located",
"type": "string"
}
},
"type": "object"
}
},
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"configurations": {
"additionalProperties": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
},
{
"properties": {
"login": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginCommandParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
}
]
}
}
},
{
"properties": {
"start": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/startCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/initCommandParameters"
}
]
}
}
},
{
"properties": {
"deploy": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/loginSharedCommandParameters"
},
{
"$ref": "#/$defs/deployCommandParameters"
}
]
}
}
},
{
"properties": {
"init": {
"allOf": [
{
"$ref": "#/$defs/globalParameters"
},
{
"$ref": "#/$defs/buildCommandParameters"
}
]
}
}
}
]
},
"type": "object"
}
},
"type": "object"
} | MIT | en |
Azure/azure-sdk-tools | 2d4d757c2c4551c8adb78802ecd3cbb99c4ea201 | 2023-04-25T00:30:03 | tools/secret-management/schema/1.0.0/plan.json | 108 | 2024-05-29T14:38:39.531471Z | {
"$id": "https://raw.githubusercontent.com/azure/azure-sdk-tools/main/tools/secret-management/schema/1.0.0/plan.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A secret rotation plan",
"properties": {
"$schema": {
"description": "JSON Schema URI (used by some editors)",
"type": "string"
},
"description": {
"description": "A description of the secret being rotated by this plan",
"type": "string"
},
"name": {
"description": "The rotation plan name",
"type": "string"
},
"revokeAfterPeriod": {
"description": "Time span indicating when the old secret values should be revoked after rotation",
"type": "string"
},
"rotationPeriod": {
"description": "Time span indicating when the secret should expire after rotation",
"type": "string"
},
"rotationThreshold": {
"description": "Time span indicating when the secret should be rotated before it expires",
"type": "string"
},
"stores": {
"description": "The stores participating in the rotation plan",
"items": {
"properties": {
"isOrigin": {
"description": "Is this store the origin of the secret?",
"type": "boolean"
},
"isPrimary": {
"description": "Is this store the primary store for the secret metadata?",
"type": "boolean"
},
"name": {
"description": "The store name",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Store specific parameters",
"propertyValues": {
"type": "string"
},
"type": "object"
},
"type": {
"description": "The store type",
"type": "string"
}
},
"type": "object"
},
"minItems": 1,
"type": "array"
},
"tags": {
"description": "Plan tags",
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
}
},
"required": [
"rotationThreshold",
"rotationPeriod",
"stores"
],
"title": "PlanConfiguration",
"type": "object",
"unevaluatedProperties": false
} | MIT | en |
Azure/azure-sdk-tools | 9ae20c3fa206a76ee8350d4508c35209701aee40 | 2024-04-15T20:39:49 | tools/secret-management/schema/1.0.0/plan.json | 108 | 2024-05-29T14:38:39.531471Z | {
"$id": "https://raw.githubusercontent.com/azure/azure-sdk-tools/main/tools/secret-management/schema/1.0.0/plan.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A secret rotation plan",
"properties": {
"$schema": {
"description": "JSON Schema URI (used by some editors)",
"type": "string"
},
"description": {
"description": "A description of the secret being rotated by this plan",
"type": "string"
},
"name": {
"description": "The rotation plan name",
"type": "string"
},
"revokeAfterPeriod": {
"description": "Time span indicating when the old secret values should be revoked after rotation",
"type": "string"
},
"rotationPeriod": {
"description": "Time span indicating when the secret should expire after rotation",
"type": "string"
},
"rotationThreshold": {
"description": "Time span before expiration indicating when the secret should be rotated",
"type": "string"
},
"stores": {
"description": "The stores participating in the rotation plan",
"items": {
"properties": {
"isOrigin": {
"description": "Is this store the origin of the secret?",
"type": "boolean"
},
"isPrimary": {
"description": "Is this store the primary store for the secret metadata?",
"type": "boolean"
},
"name": {
"description": "The store name",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Store specific parameters",
"propertyValues": {
"type": "string"
},
"type": "object"
},
"type": {
"description": "The store type",
"type": "string"
}
},
"type": "object"
},
"minItems": 1,
"type": "array"
},
"tags": {
"description": "Plan tags",
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"warningThreshold": {
"description": "Time span before expiration indicating when warnings should be issued",
"type": "string"
}
},
"required": [
"rotationThreshold",
"rotationPeriod",
"stores"
],
"title": "PlanConfiguration",
"type": "object",
"unevaluatedProperties": false
} | MIT | en |
dnsquery/dns-query | e9b8d793ced2388d6aca1f95acc1475bc7e97c0d | 2022-05-31T14:14:01 | data/resolvers.schema.json | 17 | 2024-05-28T04:21:05.500455Z | {
"$id": "https://martinheidegger.github.io/dns-query/resolvers.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"description": "DNS Endpoint consumable JSON format",
"properties": {
"resolvers": {
"items": {
"additionalProperties": false,
"properties": {
"country": {
"type": "string"
},
"description": {
"description": "Description as provided by hoster.",
"type": "string"
},
"docs": {
"description": "link to documentation",
"format": "uri",
"type": "string"
},
"endpoint": {
"oneOf": [
{
"additionalProperties": false,
"description": "http/https endpoints",
"properties": {
"cors": {
"description": "true, if endpoint supports http/https CORS headers, defaults to false",
"type": "boolean"
},
"host": {
"description": "DNS host for the endpoint",
"type": "string"
},
"ipv4": {
"description": "well-known ipv4 address for the host",
"format": "ipv4",
"type": "string"
},
"ipv6": {
"description": "well-known ipv6 address for the host",
"format": "ipv6",
"type": "string"
},
"method": {
"description": "Method to request in case of http/https, defaults to GET",
"enum": [
"POST",
"GET"
]
},
"path": {
"description": "Path, prefixed with /, defaults to /dns-query",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 443 for https, 80 for http",
"type": "integer"
},
"protocol": {
"description": "https is the default for DoH endpoints, http for debug only!",
"enum": [
"http:",
"https:"
]
}
},
"required": [
"protocol",
"host"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "udp4 endpoints",
"properties": {
"ipv4": {
"format": "ipv4",
"type": "string"
},
"pk": {
"description": "public key for dnscrypt verification",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 53",
"type": "integer"
},
"protocol": {
"enum": [
"udp4:"
]
}
},
"required": [
"protocol",
"ipv4"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "udp6 endpoints",
"properties": {
"ipv6": {
"format": "ipv6",
"type": "string"
},
"pk": {
"description": "public key for dnscrypt verification",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 53",
"type": "integer"
},
"protocol": {
"enum": [
"udp6:"
]
}
},
"required": [
"protocol",
"ipv6"
],
"type": "object"
}
]
},
"filter": {
"description": "true, if endpoint is known to filters/redirects DNS packets, defaults to false",
"type": "boolean"
},
"location": {
"additionalProperties": false,
"properties": {
"lat": {
"type": "number"
},
"long": {
"type": "number"
}
},
"type": "object"
},
"log": {
"description": "true, if endpoint is known to log requests, defaults to false",
"type": "boolean"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"endpoint"
],
"type": "object"
},
"type": "array"
}
},
"title": "DNS Endpoint JSON Table",
"type": "object"
} | MIT | en |
dnsquery/dns-query | 2842f35568ee99dd3bece61a4e0527c5c9d8db6f | 2022-06-02T14:21:04 | data/resolvers.schema.json | 17 | 2024-05-28T04:21:05.500455Z | {
"$id": "https://martinheidegger.github.io/dns-query/resolvers.schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"description": "DNS Endpoint consumable JSON format",
"properties": {
"resolvers": {
"items": {
"additionalProperties": false,
"properties": {
"cors": {
"description": "true, if endpoint supports http/https CORS headers, defaults to false",
"type": "boolean"
},
"country": {
"type": "string"
},
"description": {
"description": "Description as provided by hoster.",
"type": "string"
},
"docs": {
"description": "link to documentation",
"format": "uri",
"type": "string"
},
"endpoint": {
"oneOf": [
{
"additionalProperties": false,
"description": "http/https endpoints",
"properties": {
"cors": {
"description": "(DEPRECATED: Use resolver.cors instead!) true, if endpoint supports http/https CORS headers, defaults to false",
"type": "boolean"
},
"host": {
"description": "DNS host for the endpoint",
"type": "string"
},
"ipv4": {
"description": "well-known ipv4 address for the host",
"format": "ipv4",
"type": "string"
},
"ipv6": {
"description": "well-known ipv6 address for the host",
"format": "ipv6",
"type": "string"
},
"method": {
"description": "Method to request in case of http/https, defaults to GET",
"enum": [
"POST",
"GET"
]
},
"path": {
"description": "Path, prefixed with /, defaults to /dns-query",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 443 for https, 80 for http",
"type": "integer"
},
"protocol": {
"description": "https is the default for DoH endpoints, http for debug only!",
"enum": [
"http:",
"https:"
]
}
},
"required": [
"protocol",
"host"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "udp4 endpoints",
"properties": {
"ipv4": {
"format": "ipv4",
"type": "string"
},
"pk": {
"description": "public key for dnscrypt verification",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 53",
"type": "integer"
},
"protocol": {
"enum": [
"udp4:"
]
}
},
"required": [
"protocol",
"ipv4"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "udp6 endpoints",
"properties": {
"ipv6": {
"format": "ipv6",
"type": "string"
},
"pk": {
"description": "public key for dnscrypt verification",
"type": "string"
},
"port": {
"description": "port to connect to, defaults to 53",
"type": "integer"
},
"protocol": {
"enum": [
"udp6:"
]
}
},
"required": [
"protocol",
"ipv6"
],
"type": "object"
}
]
},
"filter": {
"description": "true, if endpoint is known to filters/redirects DNS packets, defaults to false",
"type": "boolean"
},
"location": {
"additionalProperties": false,
"properties": {
"lat": {
"type": "number"
},
"long": {
"type": "number"
}
},
"type": "object"
},
"log": {
"description": "true, if endpoint is known to log requests, defaults to false",
"type": "boolean"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"endpoint"
],
"type": "object"
},
"type": "array"
}
},
"title": "DNS Endpoint JSON Table",
"type": "object"
} | MIT | en |
Anshelen/microservices-deploy | ca47733bc0ffb873653a6bdb232936b4c719da78 | 2020-02-03T20:11:03 | msvc-chart/values.schema.json | 15 | 2024-05-28T03:16:13.509746Z | {
"$schema": "https://json-schema.org/draft-07/schema#",
"properties": {
"backend": {
"properties": {
"container": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"resources": {
"properties": {
"limits": {
"properties": {
"cpu": {
"type": [
"string",
"number"
]
},
"memory": {
"type": [
"string",
"number"
]
}
},
"type": "object"
},
"requests": {
"properties": {
"cpu": {
"type": [
"string",
"null"
]
},
"memory": {
"type": [
"string",
"null"
]
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"deployment": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"replicas": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"hpa": {
"properties": {
"enabled": {
"type": "boolean"
},
"maxReplicas": {
"minimum": 1,
"type": "integer"
},
"minReplicas": {
"minimum": 1,
"type": "integer"
},
"name": {
"type": [
"string",
"null"
]
},
"targetCPUUtilizationPercentage": {
"maximum": 99,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"image": {
"properties": {
"name": {
"type": "string"
},
"pullPolicy": {
"enum": [
"IfNotPresent",
"Always",
"Never"
]
},
"tag": {
"type": "string"
}
},
"type": "object"
},
"service": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"port": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"createAccount": {
"properties": {
"create": {
"type": "boolean"
},
"name": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"gateway": {
"properties": {
"container": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"resources": {
"properties": {
"limits": {
"properties": {
"cpu": {
"type": [
"string",
"number"
]
},
"memory": {
"type": [
"string",
"number"
]
}
},
"type": "object"
},
"requests": {
"properties": {
"cpu": {
"type": [
"string",
"null"
]
},
"memory": {
"type": [
"string",
"null"
]
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"deployment": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"replicas": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"hpa": {
"properties": {
"enabled": {
"type": "boolean"
},
"maxReplicas": {
"minimum": 1,
"type": "integer"
},
"minReplicas": {
"minimum": 1,
"type": "integer"
},
"name": {
"type": [
"string",
"null"
]
},
"targetCPUUtilizationPercentage": {
"maximum": 99,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"image": {
"properties": {
"name": {
"type": "string"
},
"pullPolicy": {
"enum": [
"IfNotPresent",
"Always",
"Never"
]
},
"tag": {
"type": "string"
}
},
"type": "object"
},
"service": {
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"port": {
"minimum": 1,
"type": "integer"
},
"type": {
"enum": [
"ClusterIP",
"NodePort",
"LoadBalancer"
]
}
},
"type": "object"
}
},
"type": "object"
},
"secrets": {
"properties": {
"secret": {
"type": [
"number",
"string"
]
}
},
"type": "object"
}
},
"title": "Values",
"type": "object"
} | BSD-3-Clause | en |
json-api/json-api | af47518badf387775184872680b7f6fb4763ecda | 2024-05-19T21:48:32 | _schemas/1.0/schema_create_resource.json | 7,334 | 2024-05-29T10:26:42.251294Z | {
"$comment": "The $id URI should be modified before releasing. This URI does not need to be network addressable. It is an ID only.",
"$id": "https://jsonapi.org/schemas/spec/v1.0/draft/create/resource",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"definitions": {
"resource": {
"$comment": "The id member is not required when the resource object originates at the client and represents a new resource to be created on the server.",
"additionalProperties": false,
"allOf": [
{
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/resourceIdentificationNew"
}
],
"description": "\"Resource objects\" appear in a JSON:API document to represent resources.",
"properties": {
"attributes": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/attributes"
},
"id": true,
"meta": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/meta"
},
"relationships": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/relationshipsFromRequest"
},
"type": true
},
"type": "object"
}
},
"description": "This schema only validates a request for POSTing a new resource.",
"properties": {
"data": {
"$ref": "#/definitions/resource"
},
"jsonapi": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/jsonapi"
},
"meta": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/meta"
}
},
"required": [
"data"
],
"title": "JSON:API Schema for POST request",
"type": "object"
} | CC0-1.0 | en |
json-api/json-api | af47518badf387775184872680b7f6fb4763ecda | 2024-05-19T21:48:32 | _schemas/1.0/schema_update_resource.json | 7,334 | 2024-05-29T10:26:42.251294Z | {
"$comment": "The $id URI should be modified before releasing. This URI does not need to be network addressable. It is an ID only.",
"$id": "https://jsonapi.org/schemas/spec/v1.0/draft/update/resource",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"definitions": {
"resource": {
"$comment": "The id member is not required when the resource object originates at the client and represents a new resource to be created on the server.",
"additionalProperties": false,
"allOf": [
{
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/resourceIdentification"
}
],
"description": "\"Resource objects\" appear in a JSON:API document to represent resources.",
"properties": {
"attributes": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/attributes"
},
"id": true,
"meta": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/meta"
},
"relationships": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/relationshipsFromRequest"
},
"type": true
},
"type": "object"
}
},
"description": "This schema only validates a request for PATCHing a resource.",
"properties": {
"data": {
"$ref": "#/definitions/resource"
},
"jsonapi": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/jsonapi"
},
"meta": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/meta"
}
},
"required": [
"data"
],
"title": "JSON:API Schema for POST request",
"type": "object"
} | CC0-1.0 | en |
json-api/json-api | af47518badf387775184872680b7f6fb4763ecda | 2024-05-19T21:48:32 | _schemas/1.0/schema.json | 7,334 | 2024-05-29T10:26:42.251294Z | {
"$comment": "The $id URI should be modified before releasing. This URI does not need to be network addressable. It is an ID only.",
"$id": "https://jsonapi.org/schemas/spec/v1.0/draft",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/requiredTopLevelMembers"
},
{
"$ref": "#/definitions/oneOfDataOrErrors"
}
],
"definitions": {
"attributes": {
"additionalProperties": false,
"description": "Members of the attributes object (\"attributes\") represent information about the resource object in which it's defined.",
"not": {
"$comment": "This is what the specification requires, but it seems bad. https://github.com/json-api/json-api/issues/1553",
"anyOf": [
{
"required": [
"type"
]
},
{
"required": [
"id"
]
}
]
},
"patternProperties": {
"": true
},
"propertyNames": {
"$ref": "#/definitions/memberName"
},
"type": "object"
},
"data": {
"description": "The document's \"primary data\" is a representation of the resource or collection of resources targeted by a request.",
"oneOf": [
{
"$ref": "#/definitions/resource"
},
{
"$ref": "#/definitions/resourceCollection",
"description": "An array of resource objects, an array of resource identifier objects, or an empty array ([]), for requests that target resource collections."
},
{
"description": "null if the request is one that might correspond to a single resource, but doesn't currently.",
"type": "null"
}
]
},
"empty": {
"description": "Describes an empty to-one relationship.",
"type": "null"
},
"error": {
"additionalProperties": false,
"properties": {
"code": {
"description": "An application-specific error code, expressed as a string value.",
"type": "string"
},
"detail": {
"description": "A human-readable explanation specific to this occurrence of the problem.",
"type": "string"
},
"id": {
"$comment": "The spec doesn't specify that this MUST be a string, so this could be changed to additionally allow numbers",
"description": "A unique identifier for this particular occurrence of the problem.",
"type": "string"
},
"links": {
"$ref": "#/definitions/errorLinks"
},
"meta": {
"$ref": "#/definitions/meta"
},
"source": {
"properties": {
"parameter": {
"description": "A string indicating which query parameter caused the error.",
"type": "string"
},
"pointer": {
"description": "A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. \"/data\" for a primary data object, or \"/data/attributes/title\" for a specific attribute].",
"pattern": "^(?:\\/(?:[^~/]|~0|~1)*)*$",
"type": "string"
}
},
"type": "object"
},
"status": {
"description": "The HTTP status code applicable to this problem, expressed as a string value.",
"type": "string"
},
"title": {
"description": "A short, human-readable summary of the problem. It **SHOULD NOT** change from occurrence to occurrence of the problem, except for purposes of localization.",
"type": "string"
}
},
"type": "object"
},
"errorLinks": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/links"
}
],
"description": "The error links object **MAY** contain the following members: about.",
"properties": {
"about": {
"$ref": "#/definitions/link",
"description": "A link that leads to further details about this particular occurrence of the problem."
}
},
"type": "object"
},
"errors": {
"items": {
"$ref": "#/definitions/error"
},
"type": "array",
"uniqueItems": true
},
"included": {
"description": "To reduce the number of HTTP requests, servers **MAY** allow responses that include related resources along with the requested primary resources. Such responses are called \"compound documents\".",
"items": {
"$ref": "#/definitions/resource"
},
"type": "array",
"uniqueItems": true
},
"jsonapi": {
"additionalProperties": false,
"description": "An object describing the server's implementation",
"properties": {
"meta": {
"$ref": "#/definitions/meta"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"link": {
"description": "A link **MUST** be represented as either: a string containing the link's URL or a link object.",
"oneOf": [
{
"$ref": "#/definitions/linkUrl"
},
{
"$ref": "#/definitions/linkObject"
}
]
},
"linkObject": {
"properties": {
"href": {
"$ref": "#/definitions/linkUrl"
},
"meta": {
"$ref": "#/definitions/meta"
}
},
"type": "object"
},
"linkUrl": {
"$comment": "URI regex as per https://tools.ietf.org/html/rfc3986#appendix-B",
"description": "A string containing the link's URL.",
"format": "uri",
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?",
"type": "string"
},
"linkage": {
"description": "Resource linkage in a compound document allows a client to link together all of the included resource objects without having to GET any URLs via links.",
"oneOf": [
{
"$ref": "#/definitions/relationshipToOne"
},
{
"$ref": "#/definitions/relationshipToMany"
}
]
},
"links": {
"type": "object"
},
"memberName": {
"description": "Member name may contain any valid JSON value.",
"pattern": "^[a-zA-Z0-9]{1}(?:[-\\w]*[a-zA-Z0-9])?$",
"type": "string"
},
"meta": {
"additionalProperties": false,
"description": "Non-standard meta-information that can not be represented as an attribute or relationship.",
"patternProperties": {
"": true
},
"propertyNames": {
"$ref": "#/definitions/memberName"
},
"type": "object"
},
"oneOfDataOrErrors": {
"dependencies": {
"data": {
"not": {
"required": [
"errors"
]
}
}
},
"type": "object"
},
"pagination": {
"properties": {
"first": {
"description": "The first page of data",
"oneOf": [
{
"$ref": "#/definitions/link"
},
{
"type": "null"
}
]
},
"last": {
"description": "The last page of data",
"oneOf": [
{
"$ref": "#/definitions/link"
},
{
"type": "null"
}
]
},
"next": {
"description": "The next page of data",
"oneOf": [
{
"$ref": "#/definitions/link"
},
{
"type": "null"
}
]
},
"prev": {
"description": "The previous page of data",
"oneOf": [
{
"$ref": "#/definitions/link"
},
{
"type": "null"
}
]
}
},
"type": "object"
},
"relationship": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"data"
]
},
{
"required": [
"meta"
]
},
{
"required": [
"links"
]
}
],
"properties": {
"data": {
"$ref": "#/definitions/linkage"
},
"links": {
"$ref": "#/definitions/relationshipLinks"
},
"meta": {
"$ref": "#/definitions/meta"
}
},
"type": "object"
},
"relationshipFromRequest": {
"additionalProperties": false,
"properties": {
"data": {
"$ref": "#/definitions/linkage"
},
"meta": {
"$ref": "#/definitions/meta"
}
},
"required": [
"data"
],
"type": "object"
},
"relationshipLinks": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/links"
},
{
"$ref": "#/definitions/pagination",
"description": "Pagination links"
}
],
"description": "A resource object **MAY** contain references to other resource objects (\"relationships\"). Relationships may be to-one or to-many. Relationships can be specified by including a member in a resource's links object.",
"properties": {
"first": true,
"last": true,
"next": true,
"prev": true,
"related": {
"$ref": "#/definitions/link"
},
"self": {
"$ref": "#/definitions/link",
"description": "A `self` member, whose value is a URL for the relationship itself (a \"relationship URL\"). This URL allows the client to directly manipulate the relationship. For example, it would allow a client to remove an `author` from an `article` without deleting the people resource itself."
}
},
"type": "object"
},
"relationshipToMany": {
"description": "An array of objects each containing \"type\" and \"id\" members for to-many relationships.",
"items": {
"$ref": "#/definitions/resourceIdentifier"
},
"type": "array"
},
"relationshipToOne": {
"description": "References to other resource objects in a to-one (\"relationship\"). Relationships can be specified by including a member in a resource's links object.",
"oneOf": [
{
"$ref": "#/definitions/empty"
},
{
"$ref": "#/definitions/resourceIdentifier"
}
]
},
"relationships": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/relationshipsForbiddenMemberName"
}
],
"description": "Members of the relationships object (\"relationships\") represent references from the resource object in which it's defined to other resource objects.",
"patternProperties": {
"": {
"$ref": "#/definitions/relationship"
}
},
"propertyNames": {
"$ref": "#/definitions/memberName"
},
"type": "object"
},
"relationshipsForbiddenMemberName": {
"not": {
"anyOf": [
{
"required": [
"type"
],
"type": "object"
},
{
"required": [
"id"
],
"type": "object"
}
]
}
},
"relationshipsFromRequest": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/relationshipsForbiddenMemberName"
}
],
"description": "Members of the relationships object (\"relationships\") represent references from the resource object in which it's defined to other resource objects.",
"patternProperties": {
"": {
"$ref": "#/definitions/relationshipFromRequest"
}
},
"propertyNames": {
"$ref": "#/definitions/memberName"
},
"type": "object"
},
"requiredTopLevelMembers": {
"anyOf": [
{
"required": [
"meta"
],
"type": "object"
},
{
"required": [
"data"
],
"type": "object"
},
{
"required": [
"errors"
],
"type": "object"
}
]
},
"resource": {
"$comment": "The id member is not required when the resource object originates at the client and represents a new resource to be created on the server.",
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/resourceIdentification"
}
],
"description": "\"Resource objects\" appear in a JSON:API document to represent resources.",
"properties": {
"attributes": {
"$ref": "#/definitions/attributes"
},
"id": true,
"links": {
"$ref": "#/definitions/resourceLinks"
},
"meta": {
"$ref": "#/definitions/meta"
},
"relationships": {
"$ref": "#/definitions/relationships"
},
"type": true
},
"type": "object"
},
"resourceCollection": {
"description": "An array of resource objects.",
"items": {
"$ref": "#/definitions/resource"
},
"type": "array",
"uniqueItems": true
},
"resourceIdentification": {
"allOf": [
{
"$ref": "#/definitions/resourceIdentificationNew"
},
{
"required": [
"type",
"id"
],
"type": "object"
}
]
},
"resourceIdentificationNew": {
"properties": {
"id": {
"type": "string"
},
"type": {
"pattern": "^[a-zA-Z0-9]{1}(?:[-\\w]*[a-zA-Z0-9])?$",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"resourceIdentifier": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/resourceIdentification"
}
],
"description": "The \"type\" and \"id\" to non-empty members.",
"properties": {
"id": true,
"meta": {
"$ref": "#/definitions/meta"
},
"type": true
},
"type": "object"
},
"resourceLinks": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/links"
}
],
"description": "The top-level links object **MAY** contain the following members: self, related, pagination links.",
"properties": {
"self": {
"$ref": "#/definitions/link",
"description": ""
}
},
"type": "object"
},
"topLevelLinks": {
"additionalProperties": false,
"allOf": [
{
"$ref": "#/definitions/links"
},
{
"$ref": "#/definitions/pagination",
"description": "Pagination links for the primary data."
}
],
"description": "The top-level links object **MAY** contain the following members: self, related, pagination links.",
"properties": {
"first": true,
"last": true,
"next": true,
"prev": true,
"related": {
"$ref": "#/definitions/link",
"description": "A related resource link when the primary data represents a resource relationship."
},
"self": {
"$ref": "#/definitions/link",
"description": "The link that generated the current response document."
}
},
"type": "object"
}
},
"dependencies": {
"included": [
"data"
]
},
"description": "This schema only validates RESPONSES from a request. Validating request payloads requires slightly different constraints.",
"properties": {
"data": {
"$ref": "#/definitions/data"
},
"errors": {
"$ref": "#/definitions/errors"
},
"included": {
"$ref": "#/definitions/included"
},
"jsonapi": {
"$ref": "#/definitions/jsonapi"
},
"links": {
"$ref": "#/definitions/topLevelLinks",
"description": "Link members related to the primary data."
},
"meta": {
"$ref": "#/definitions/meta"
}
},
"title": "JSON:API Schema",
"type": "object"
} | CC0-1.0 | en |
json-api/json-api | af47518badf387775184872680b7f6fb4763ecda | 2024-05-19T21:48:32 | _schemas/1.0/schema_update_relationship.json | 7,334 | 2024-05-29T10:26:42.251294Z | {
"$comment": "The $id URI should be modified before releasing. This URI does not need to be network addressable. It is an ID only.",
"$id": "https://jsonapi.org/schemas/spec/v1.0/draft/update/relationship",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"description": "This schema only validates a request for PATCHing a resource's relationship.",
"properties": {
"data": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/linkage"
},
"jsonapi": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/jsonapi"
},
"meta": {
"$ref": "https://jsonapi.org/schemas/spec/v1.0/draft#/definitions/meta"
}
},
"required": [
"data"
],
"title": "JSON:API Schema for POST request",
"type": "object"
} | CC0-1.0 | en |
chains-project/bump | 48e222cbcd46548c5bca23e73a7e05db50a0c3c6 | 2023-09-04T19:45:10 | schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"dependencySection": {
"description": "The section in the POM file under which the updated dependency is declared.",
"enum": [
"dependencies",
"buildPlugins",
"buildPluginManagement",
"dependencyManagement",
"profileDependencies",
"profileBuildPlugins",
"unknown"
],
"type": "string"
},
"githubCompareLink": {
"description": "The comparison link of the two GitHub tags that correspond to the old and new versions of the updated dependency.",
"type": "string"
},
"mavenSourceLinkBreaking": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"mavenSourceLinkPre": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"updatedFileType": {
"anyOf": [
{
"enum": [
"POM",
"JAR"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of the updated dependency."
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType",
"githubCompareLink",
"mavenSourceLinkPre",
"mavenSourceLinkBreaking",
"updatedFileType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"MAVEN_ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/not-attempted-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a (potential) breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 9f6e3375d3a57d3314812ac812a30c07710d44a6 | 2023-10-05T13:07:23 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"DEPENDENCY_LOCK_FAILURE",
"MAVEN_ENFORCER_FAILURE",
"ENFORCER_FAILURE",
"JENKINS_PLUGIN_FAILURE",
"JAXB_FAILURE",
"SCM_CHECKOUT_FAILURE",
"CHECKSTYLE_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 4e39c288a854e386f821751ea1c1a6d254c73c31 | 2023-08-30T06:40:30 | schemas/not-attempted-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a (potential) breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | ebcc3c0b33918114b0240c0fca6d60aa5ac455f0 | 2023-08-10T08:36:09 | schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning an unreproducible breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"javaVersionUsedForReproduction"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"description": "The type of user that introduced the breaking update commit",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": [
"string",
"null"
]
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"MAVEN_ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": [
"string",
"null"
]
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"description": "The type of user that introduced the breaking update PR",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"preCommitAuthor": {
"description": "The type of user that introduced the previous commit of the breaking update",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": [
"string",
"null"
]
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 4e39c288a854e386f821751ea1c1a6d254c73c31 | 2023-08-30T06:40:30 | schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning an unreproducible breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"javaVersionUsedForReproduction"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"test",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 48e222cbcd46548c5bca23e73a7e05db50a0c3c6 | 2023-09-04T19:45:10 | schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"dependencySection": {
"description": "The section in the POM file under which the updated dependency is declared.",
"enum": [
"dependencies",
"buildPlugins",
"buildPluginManagement",
"dependencyManagement",
"profileDependencies",
"profileBuildPlugins",
"unknown"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"test",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"githubCompareLink": {
"description": "The comparison link of the two GitHub tags that correspond to the old and new versions of the updated dependency.",
"type": "string"
},
"mavenSourceLinkBreaking": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"mavenSourceLinkPre": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"updatedFileType": {
"anyOf": [
{
"enum": [
"POM",
"JAR"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of the updated dependency."
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType",
"githubCompareLink",
"mavenSourceLinkPre",
"mavenSourceLinkBreaking",
"updatedFileType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 82e84668c783eb1fa279336a21fe386bd131206d | 2023-10-24T09:30:25 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"description": "The type of user that introduced the breaking update commit",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"DEPENDENCY_LOCK_FAILURE",
"ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"description": "The type of user that introduced the breaking update PR",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"preCommitAuthor": {
"description": "The type of user that introduced the previous commit of the breaking update",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning an unreproducible breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"javaVersionUsedForReproduction"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | ebcc3c0b33918114b0240c0fca6d60aa5ac455f0 | 2023-08-10T08:36:09 | schemas/not-attempted-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a (potential) breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 48e222cbcd46548c5bca23e73a7e05db50a0c3c6 | 2023-09-04T19:45:10 | schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"dependencySection": {
"description": "The section in the POM file under which the updated dependency is declared.",
"enum": [
"dependencies",
"buildPlugins",
"buildPluginManagement",
"dependencyManagement",
"profileDependencies",
"profileBuildPlugins",
"unknown"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 82e84668c783eb1fa279336a21fe386bd131206d | 2023-10-24T09:30:25 | schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"dependencySection": {
"description": "The section in the POM file under which the updated dependency is declared.",
"enum": [
"dependencies",
"buildPlugins",
"buildPluginManagement",
"dependencyManagement",
"profileDependencies",
"profileBuildPlugins",
"unknown"
],
"type": "string"
},
"githubCompareLink": {
"description": "The comparison link of the two GitHub tags that correspond to the old and new versions of the updated dependency.",
"type": "string"
},
"mavenSourceLinkBreaking": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"mavenSourceLinkPre": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"updatedFileType": {
"description": "The type of the updated dependency.",
"enum": [
"POM",
"JAR"
],
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType",
"githubCompareLink",
"mavenSourceLinkPre",
"mavenSourceLinkBreaking",
"updatedFileType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | ebcc3c0b33918114b0240c0fca6d60aa5ac455f0 | 2023-08-10T08:36:09 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"MAVEN_ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"githubCompareLink": {
"description": "The comparison link of the two GitHub tags that correspond to the old and new versions of the updated dependency.",
"type": "string"
},
"mavenSourceLinkBreaking": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"mavenSourceLinkPre": {
"description": "The maven source links of the previous versions of the updated dependency.",
"type": [
"string",
"null"
]
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"updatedFileType": {
"anyOf": [
{
"enum": [
"POM",
"JAR"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of the updated dependency."
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType",
"githubCompareLink",
"mavenSourceLinkPre",
"mavenSourceLinkBreaking",
"updatedFileType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e0ebcf192d1da68b6a6de783951eef22c90919d7 | 2024-04-12T12:04:07 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"description": "The type of user that introduced the breaking update commit",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The cac5fd5187ce64d2b53602717f09cc18dd21d55e8dtegory of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"DEPENDENCY_LOCK_FAILURE",
"ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE",
"WERROR_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"description": "The type of user that introduced the breaking update PR",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"preCommitAuthor": {
"description": "The type of user that introduced the previous commit of the breaking update",
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/not-attempted-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/not-attempted-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a (potential) breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"description": "The type of user that introduced the breaking update commit",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"prAuthor": {
"description": "The type of user that introduced the breaking update PR",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"preCommitAuthor": {
"description": "The type of user that introduced the previous commit of the breaking update",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e74cbe49dff8cf279e01329558c577e9e851d492 | 2023-10-13T16:43:46 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"DEPENDENCY_LOCK_FAILURE",
"ENFORCER_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning an unreproducible breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"description": "The type of user that introduced the breaking update commit",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"description": "The type of user that introduced the breaking update PR",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"preCommitAuthor": {
"description": "The type of user that introduced the previous commit of the breaking update",
"enum": [
"human",
"bot"
],
"type": [
"string",
"null"
]
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"javaVersionUsedForReproduction"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 4e39c288a854e386f821751ea1c1a6d254c73c31 | 2023-08-30T06:40:30 | schemas/successful-reproduction-schemas/breaking-update.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/successful-reproduction-schemas/breaking-update.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Data concerning a successfully reproduced breaking dependency update",
"properties": {
"breakingCommit": {
"description": "The commit hash of the commit introducing the breaking update",
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"breakingCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update commit"
},
"breakingUpdateReproductionCommand": {
"description": "The command to build the project with the breaking update commit",
"type": "string"
},
"failureCategory": {
"description": "The category of the root cause of the reproduction failure",
"enum": [
"DEPENDENCY_RESOLUTION_FAILURE",
"DEPENDENCY_LOCK_FAILURE",
"MAVEN_ENFORCER_FAILURE",
"JENKINS_PLUGIN_FAILURE",
"JAXB_FAILURE",
"SCM_CHECKOUT_FAILURE",
"CHECKSTYLE_FAILURE",
"COMPILATION_FAILURE",
"TEST_FAILURE",
"UNKNOWN_FAILURE"
],
"type": "string"
},
"javaVersionUsedForReproduction": {
"description": "The Java version used for the reproduction attempt",
"type": "string"
},
"prAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the breaking update PR"
},
"preCommitAuthor": {
"anyOf": [
{
"enum": [
"human",
"bot",
"unknown"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "The type of user that introduced the previous commit of the breaking update"
},
"preCommitReproductionCommand": {
"description": "The command to build the project without the breaking update commit",
"type": "string"
},
"project": {
"description": "The name of the repository containing the breaking update",
"type": "string"
},
"projectOrganisation": {
"description": "The name of the GitHub organisation containing the breaking update",
"type": "string"
},
"updatedDependency": {
"$ref": "breaking-update-dependency.schema.json",
"description": "The updated dependency details"
},
"url": {
"description": "The URL of the GitHub pull request introducing the breaking update",
"pattern": "^https://github.com/\\S+/\\S+/pull/\\d+$",
"type": "string"
}
},
"required": [
"url",
"project",
"projectOrganisation",
"breakingCommit",
"prAuthor",
"preCommitAuthor",
"breakingCommitAuthor",
"updatedDependency",
"preCommitReproductionCommand",
"breakingUpdateReproductionCommand",
"javaVersionUsedForReproduction",
"failureCategory"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | e9be41738e1fca4b1439291c322bd7a0dd2c2c63 | 2023-07-14T11:20:46 | schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"test",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
chains-project/bump | 0129569c2b3c2b378844005789a8040d837ef889 | 2023-07-14T11:41:04 | schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json | 9 | 2024-05-27T05:58:30.744062Z | {
"$id": "https://github.com/chains-project/breaking-updates/blob/main/schemas/unsuccessful-reproduction-schemas/breaking-update-dependency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Details on the updated dependency",
"properties": {
"dependencyArtifactID": {
"description": "The artifact ID of the updated dependency",
"type": "string"
},
"dependencyGroupID": {
"description": "The group ID of the updated dependency",
"type": "string"
},
"dependencyScope": {
"description": "The scope of the dependency",
"enum": [
"compile",
"provided",
"runtime",
"system",
"import"
],
"type": "string"
},
"newVersion": {
"description": "The version of the dependency after the update",
"type": "string"
},
"previousVersion": {
"description": "The version of the dependency before the update",
"type": "string"
},
"versionUpdateType": {
"description": "The type of change between dependency version, following the SemVer terminology",
"enum": [
"major",
"minor",
"patch",
"other"
],
"type": "string"
}
},
"required": [
"dependencyGroupID",
"dependencyArtifactID",
"previousVersion",
"newVersion",
"dependencyScope",
"versionUpdateType"
],
"title": "Breaking Update",
"type": "object"
} | MIT | en |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.