Service Fabric · Schema

Service Fabric Application

A Service Fabric application — a collection of constituent services that together form a composite application deployed to a Service Fabric cluster

Distributed SystemsMicroservicesContainersCloud-NativeKubernetesAzureOpen-Source

Properties

Name Type Description
Id string Application ID without the fabric:/ scheme prefix
Name string Application URI in fabric:/ scheme (e.g., fabric:/MyApp)
TypeName string Application type name as registered in the cluster image store
TypeVersion string Application type version string
Status string Current application lifecycle status
Parameters array Override parameter values for the application manifest
HealthState string Aggregated health state of the application
ApplicationDefinitionKind string How the application was defined — native SF manifest or Docker Compose
View JSON Schema on GitHub

JSON Schema

service-fabric-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/service-fabric/schemas/application",
  "title": "Service Fabric Application",
  "description": "A Service Fabric application — a collection of constituent services that together form a composite application deployed to a Service Fabric cluster",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Application ID without the fabric:/ scheme prefix"
    },
    "Name": {
      "type": "string",
      "description": "Application URI in fabric:/ scheme (e.g., fabric:/MyApp)",
      "pattern": "^fabric:/"
    },
    "TypeName": {
      "type": "string",
      "description": "Application type name as registered in the cluster image store"
    },
    "TypeVersion": {
      "type": "string",
      "description": "Application type version string"
    },
    "Status": {
      "type": "string",
      "enum": ["Invalid", "Ready", "Upgrading", "Creating", "Deleting", "Failed"],
      "description": "Current application lifecycle status"
    },
    "Parameters": {
      "type": "array",
      "description": "Override parameter values for the application manifest",
      "items": {
        "type": "object",
        "properties": {
          "Key": {"type": "string"},
          "Value": {"type": "string"}
        },
        "required": ["Key", "Value"]
      }
    },
    "HealthState": {
      "type": "string",
      "enum": ["Invalid", "Ok", "Warning", "Error", "Unknown"],
      "description": "Aggregated health state of the application"
    },
    "ApplicationDefinitionKind": {
      "type": "string",
      "enum": ["Invalid", "ServiceFabricApplicationDescription", "Compose"],
      "description": "How the application was defined — native SF manifest or Docker Compose"
    }
  },
  "required": ["Name", "TypeName", "TypeVersion"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/service-fabric-application"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.