app-lifecycle_manager Schemas

On this page:

common-db

{ "$id": "common-db", "description": "Definitions used throughout Lifecycle Manager's database schemas", "definitions": { "commonFieldNames": { "enum": [ "_id" ] }, "commonFields": { "type": "object", "properties": { "_id": { "$ref": "#/definitions/MongoDB_ObjectId" } } }, "commonFieldsRequired": { "type": "object", "required": [ "_id" ] }, "MongoDB_ObjectId": { "title": "MongoDB.ObjectId", "description": "A MongoDB ObjectId", "type": "object" }, "document-identifier": { "oneOf": [ { "$ref": "common#/definitions/ObjectId" }, { "type": "object" } ] }, "account-identifier": { "oneOf": [ { "const": "Pronghorn" }, { "$ref": "#/definitions/document-identifier" } ] }, "mongodb-iso-date": { "description": "A Date instance", "type": "object" }, "created": { "$ref": "#/definitions/mongodb-iso-date" }, "lastUpdated": { "$ref": "#/definitions/mongodb-iso-date" } } }