{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-hydrated-revision-schema.json", "title": "HydratedRevision", "description": "HydratedRevision schema from Ampersand API", "type": "object", "properties": { "id": { "type": "string", "description": "The revision ID.", "example": "f0e1d2c3-b4a5-6789-0abc-def123456789" }, "specVersion": { "type": "string", "description": "The spec version string.", "example": "1.0.0" }, "createTime": { "type": "string", "description": "The time the revision was created.", "format": "date-time" }, "content": { "$ref": "../manifest/manifest.yaml#/components/schemas/HydratedIntegration" } }, "required": [ "content", "createTime", "id", "specVersion" ] }