Back to .md Directory

App-Interface

Defines a contract repository for coordinating hosted services, where datafiles in `data/` drive automation and reconciliation.

May 2, 2026
0 downloads
0 views
ai workflow automation
View source

What this file does

Defines a contract repository for coordinating hosted services, where datafiles in data/ drive automation and reconciliation.

When to use it

  • Adding a new user or team to a managed service
  • Submitting a new application for SRE hosting
  • Modifying service-level objectives or access policies
  • Setting up a queryable contract with GraphQL

Assumes this stack

YAMLJSONGraphQLDockerGit

App-Interface

This repository serves as a central coordination point for hosted services. Many or all of the portions of the contract defined herein will be handled through automation after changes are accepted to this repository by the appropriate parties.

Overview

This repository contains of a collection of files under the data folder. Whatever is present inside that folder constitutes the contract.

These files can be yaml or json files, and they must validate against the some [well-defined json schemas][schemas].

The path of the files do not have any effect on the integrations (automation components that feed off the contract), but the contents of the files do. They will all contain:

  • $schema: which maps to a well defined schema [schema][schemas].
  • labels: arbitrary labels that can be used to perform queries, etc.
  • Additional data specific to the resource in question.

Components

Main App-Interface contract components:

Additional components and tools:

The word qontract comes from queryable-contract.

Workflow

The main use case happens when an interested party wants to submit a contract amendment. Some examples would be:

  • Adding a new user and granting access to certain teams / services.
  • Submitting a new application to be hosted by the Application SRE team.
  • Modifying the SLO of an application.
  • etc.

All contract amendments must be formally defined. Formal definitions are expressed as json schemas. You can find the supported schemas here: [schemas][schemas].

  1. The interested party will:
  • Fork the app-interface repository.
  • Submit a PR with the desired contract amendment.
  1. Automation will validate the amendment and generate a report of the desired changes, including changes that would be applied to third-party services like OpenShift, Github, etc, as a consequence of the amendment.

  2. From the moment the PR is accepted, the amended contract will enter into effect.

Local validation of datafile modifications / contract amendment

Before submitting a PR with a datafile modification / contract amendment, the user has the option to validate the changes locally.

Two things can be checked: (1) JSON schema validation (2) run integrations with --dry-run option.

Both scripts rely on a temporary directory which defaults to temp/, but can be overridden with the env var TEMP_DIR. The contents of this directory will contain the results of the manual pr check.

JSON schema validation

Instructions to perform JSON schema validation on changes to the datafiles.

Requirements:

  • docker (or podman)
  • git

Instructions:

Run the actual validator by executing:

# make sure you are in the top dir of the `app-interface` git repo
source .env
make bundle validate # output is data.json

The output will be JSON document, so you can pipe it with jq, example: cat data.json | jq .

Running integrations locally with --dry-run

Instructions in this document.

Querying the App-interface

The contract can be queried programmatically using a GraphQL API.

The GraphQL endpoint is reachable here: http://localhost:4000/graphql.

IMPORTANT: in order to use the GraphQL UI you need to click on the Settings wheel icon (top-right corner) and replace omit with include in request.credentials.

What's inside

Overview, components, workflow, local validation instructions, and GraphQL querying section.

Change this for your project

  • Replace app-sre/app-interface references with your own repository name
  • Replace http://localhost:4000/graphql with your GraphQL endpoint
  • Replace temp/ default directory with your own temporary path

Where it goes

Keep it in your repository where the agent or team that needs it will read it.

Worth borrowing

  • Using JSON schemas to formally define contract amendments
  • Validating changes locally with Docker before submitting a PR

Related Documents