{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://vclaw.dev/schemas/video/artifacts/environment-assets.schema.json",
  "title": "EnvironmentAssetsArtifact",
  "type": "object",
  "required": ["schemaVersion", "projectSlug", "generatedAt", "environments"],
  "additionalProperties": false,
  "properties": {
    "schemaVersion": { "const": 1 },
    "projectSlug": { "type": "string", "minLength": 1 },
    "generatedAt": { "type": "string", "format": "date-time" },
    "environments": {
      "type": "array",
      "items": { "$ref": "#/definitions/EnvironmentAsset" }
    }
  },
  "definitions": {
    "EnvironmentAsset": {
      "type": "object",
      "required": ["name", "description", "plateUrl", "plateRef"],
      "additionalProperties": false,
      "properties": {
        "name": { "type": "string", "minLength": 1 },
        "description": { "type": "string", "minLength": 1 },
        "plateUrl": { "type": "string" },
        "plateRef": { "type": "string", "minLength": 1 }
      }
    }
  }
}
