app-automation_studio Schemas

On this page:

common

{ "$id": "common", "title": "Common Definitions", "description": "Common schema definitions shared by Automation Studio component schemas", "definitions": { "object-id-string": { "title": "MongoDB ObjectId", "description": "A string representation of a MongoDB ObjectId", "type": "string", "pattern": "^[0-9a-fA-F]{24}$", "examples": [ "62a1f3d2ebedfc54e6e0065c", "4321abcdef694aa79dae47ad", "5cb7b531d06cceb89fd21b1c" ] }, "uuid-v4": { "description": "UUIDv4", "type": "string", "pattern": "^[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}$", "examples": [ "6ffce28f-37f8-48a0-a026-5567120def79", "9f3a1fc3-5192-470e-bdcb-9a8ac978e1e5" ] }, "iid": { "title": "IID", "description": "Incrementing integer ID", "type": "integer", "minimum": 0 }, "iso-date-string": { "title": "ISO Date String", "description": "ISO Date String", "type": "string", "examples": [ "2019-11-25T22:51:39.201Z" ], "format": "date-time" } } }