Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/dir/ads-records.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ You can generate your own example records using the [OASF Record Sample generato

!!! note

This record uses `v0.7.0` of the OASF specification.
This record uses `0.7.0` of the OASF specification.

```json
{
"schema_version": "v0.7.0",
"schema_version": "0.7.0",
"name": "email-agent",
"version": "v1.0.0",
"authors": [
Expand All @@ -46,12 +46,12 @@ You can generate your own example records using the [OASF Record Sample generato
"locators": [
{
"url": "https://github.com/agntcy/agentic-apps/tree/main/email_reviewer",
"type": "source-code"
"type": "source_code"
},
{
"url": "https://github.com/agntcy/agentic-apps/tree/main/email_reviewer/pyproject.toml",
"type": "python-package"
"type": "python_package"
}
],
]
}
```
4 changes: 2 additions & 2 deletions docs/dir/dir-core-v1-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Record is a generic object that encapsulates data of different Record types.

Supported schemas:

v0.3.1: https://schema.oasf.outshift.com/0.3.1/objects/agent
v0.7.0: https://schema.oasf.outshift.com/0.7.0/objects/record
0.3.1: https://schema.oasf.outshift.com/0.3.1/objects/agent
0.7.0: https://schema.oasf.outshift.com/0.7.0/objects/record

| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
Expand Down
10 changes: 8 additions & 2 deletions docs/dir/hosted-agent-directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,18 +228,24 @@ And it will look like this:

```json
{
"schema_version": "0.7.0",
"name": "organization/my-agent",
"version": "2.0",
"authors": [
"Organization Name"
],
"description": "This agent takes any text input and condenses it down to 3 bullets of less than 100 characters each using any LLM.",
"created_at": "2025-08-11T16:20:37.159072Z",
"locators": [
{
"url": "https://github.com/example/agent_A",
"type": "package-source-code"
"type": "source_code"
}
],
"skills": [
{
"class_uid": 10201
"id": 10201,
"name": "natural_language_processing/natural_language_generation/text_completion"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion docs/dir/scenarios.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cat << EOF > record.json
"name": "my-record",
"version": "v1.0.0",
"description": "insert description here",
"schema_version": "v0.7.0",
"schema_version": "0.7.0",
"skills": [
{
"id": 201,
Expand Down
3 changes: 2 additions & 1 deletion docs/how-to-guides/agent-record-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Start by filling out the basic metadata of your record:
- `version`:
Use semantic versioning to indicate the current version of your record.
- `schema_version`:
Provide the OASF schema version the record needs to be valid against.
Provide the OASF schema version the record needs to be valid against.
Must be in semantic versioning format (see [https://semver.org/](https://semver.org/)), e.g., `"0.7.0"`.
- `authors`:
List the authors in the `Name <email>` format.
Replace `Your Name` and `you@example.com` with the appropriate details.
Expand Down
2 changes: 1 addition & 1 deletion docs/oasf/decoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ func GetRecordSchemaVersion(record *structpb.Struct) (string, error)

* `record`: OASF record as Protocol Buffer Struct

Returns `string`: schema version (e.g., "v0.3.1", "v0.7.0").
Returns `string`: schema version (e.g., "0.3.1", "0.7.0").
2 changes: 1 addition & 1 deletion docs/oasf/validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The validation service validates OASF records against JSON schemas. It supports both embedded schemas and custom schema URLs. The validation service supports the following features:

* Validates records against embedded schema versions (v0.3.1 and v0.7.0).
* Validates records against embedded schema versions (0.3.1 and 0.7.0).
* Supports custom schema URLs for remote validation.
* Returns detailed validation errors.
* Automatic schema version detection from records.
Expand Down
Loading