{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://schema.entrecode.de/schema-data/dm-asset-render",
  "type": "object",
  "properties": {
    "thumbnail": {
      "type": "boolean"
    },
    "size": {
      "type": "number",
      "multipleOf": 1.0,
      "minimum": 1
    },
    "mimetype": {
      "type": "string",
      "pattern": "^(image|video|audio|text|application)/[a-z0-9\\.+-]+$"
    },
    "optimize": {
      "type": "boolean"
    },
    "quality": {
      "type": "number",
      "multipleOf": 1.0,
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": ["thumbnail", "size"]
}
