{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cloudfacts.org/schemas/source.schema.json",
  "title": "CloudFacts Source",
  "type": "object",
  "properties": {
    "@id": { "type": "string", "pattern": "^source:" },
    "provider": {
      "type": "object",
      "properties": {
        "@id": { "type": "string" },
        "name": { "type": "string" },
        "url": { "type": "string" }
      }
    },
    "url": { "type": "string", "format": "uri" },
    "source_type": { "type": "string" },
    "retrieved_at": { "type": "string", "format": "date-time" },
    "http_status": { "type": "integer" }
  },
  "required": ["@id", "provider", "url", "source_type", "retrieved_at"]
}