app-configuration_manager Schemas

On this page:

common

{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "common", "definitions": { "mongoObjectId": { "type": "string", "pattern": "^[0-9a-f]{24}$", "examples": [ "5c35355dbebaa82eaf8113f0" ] }, "timestamp": { "type": "string", "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}Z", "examples": [ "2019-04-12T14:42:47.958Z" ] }, "standardName": { "type": "string", "examples": [ "my standard name" ], "minLength": 1 }, "standardDescription": { "type": "string", "examples": [ "my standard description" ], "minLength": 1 }, "multiElementString": { "type": "string", "examples": [ "device1, device2, device3, device4" ], "minLength": 1 } } }