dns-providers-list.json 561 B

1234567891011121314151617181920212223
  1. {
  2. "type": "array",
  3. "description": "DNS Providers list",
  4. "items": {
  5. "type": "object",
  6. "required": ["id", "name", "credentials"],
  7. "additionalProperties": false,
  8. "properties": {
  9. "id": {
  10. "type": "string",
  11. "description": "Unique identifier for the DNS provider, matching the python package"
  12. },
  13. "name": {
  14. "type": "string",
  15. "description": "Human-readable name of the DNS provider"
  16. },
  17. "credentials": {
  18. "type": "string",
  19. "description": "Instructions on how to format the credentials for this DNS provider"
  20. }
  21. }
  22. }
  23. }