{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Installation", "title": "Installation", "type": "object", "properties": { "uuid": { "type": "string", "format": "uuid" }, "app": { "type": "object", "properties": { "uuid": { "type": "string", "format": "uuid" }, "slug": { "type": "string" } } }, "organization": { "type": "object", "properties": { "slug": { "type": "string" } } }, "status": { "type": "string" }, "dateCreated": { "type": "string", "format": "date-time" } }, "required": [ "uuid", "app" ] }