Hugging Face · Schema

Provider

Properties

Name Type Description
vendor string
region string
status string
accelerators array
View JSON Schema on GitHub

JSON Schema

hugging-face-provider-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Provider",
  "title": "Provider",
  "type": "object",
  "properties": {
    "vendor": {
      "type": "string",
      "enum": [
        "aws",
        "azure",
        "gcp"
      ],
      "example": "aws"
    },
    "region": {
      "type": "string",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "enum": [
        "available",
        "unavailable"
      ],
      "example": "available"
    },
    "accelerators": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "instanceType": {
            "type": "string"
          },
          "instanceSizes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "example": []
    }
  }
}