Properties
| Name | Type | Description |
|---|---|---|
| verifiable_password_authentication | boolean | |
| packages | array | |
| actions_macos | array | |
| dependabot | array | |
| domains | object | |
| installed_version | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api-overview",
"title": "Api Overview",
"description": "Api Overview",
"type": "object",
"properties": {
"verifiable_password_authentication": {
"type": "boolean",
"example": true
},
"packages": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"192.0.2.1"
]
},
"actions_macos": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"192.0.2.1"
]
},
"dependabot": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"192.0.2.1"
]
},
"domains": {
"type": "object",
"properties": {
"website": {
"type": "array",
"items": {
"type": "string",
"example": [
"example.com"
]
}
},
"codespaces": {
"type": "array",
"items": {
"type": "string",
"example": [
"example.com"
]
}
},
"copilot": {
"type": "array",
"items": {
"type": "string",
"example": [
"example.com"
]
}
},
"packages": {
"type": "array",
"items": {
"type": "string",
"example": [
"example.com"
]
}
},
"actions": {
"type": "array",
"items": {
"type": "string",
"example": [
"example.com"
]
}
}
}
},
"installed_version": {
"type": "string",
"example": "3.9.0"
}
},
"required": [
"verifiable_password_authentication"
]
}